mirror of
https://github.com/CoolProp/CoolProp.git
synced 2026-04-23 03:00:17 -04:00
@@ -29,8 +29,9 @@ project(${project_name})
|
||||
# Project version
|
||||
set (COOLPROP_VERSION_MAJOR 5)
|
||||
set (COOLPROP_VERSION_MINOR 0)
|
||||
set (COOLPROP_VERSION_PATCH 8dev)
|
||||
set (COOLPROP_VERSION ${COOLPROP_VERSION_MAJOR}.${COOLPROP_VERSION_MINOR}.${COOLPROP_VERSION_PATCH})
|
||||
set (COOLPROP_VERSION_PATCH 8)
|
||||
set (COOLPROP_VERSION_REVISION dev)
|
||||
set (COOLPROP_VERSION ${COOLPROP_VERSION_MAJOR}.${COOLPROP_VERSION_MINOR}.${COOLPROP_VERSION_PATCH}${COOLPROP_VERSION_REVISION})
|
||||
|
||||
#######################################
|
||||
# BUILD OPTIONS #
|
||||
@@ -903,6 +904,24 @@ if (COOLPROP_MATHEMATICA_MODULE)
|
||||
install (FILES "${CMAKE_SOURCE_DIR}/wrappers/Mathematica/example.nb" DESTINATION Mathematica)
|
||||
endif()
|
||||
|
||||
if (COOLPROP_SMATH_MODULE)
|
||||
set(COOLPROP_VERSION ${COOLPROP_VERSION_MAJOR}.${COOLPROP_VERSION_MINOR}.${COOLPROP_VERSION_PATCH}.0)
|
||||
CONFIGURE_FILE("${CMAKE_SOURCE_DIR}/wrappers/SMath/coolprop_wrapper/Properties/AssemblyInfo.cs.template"
|
||||
"${CMAKE_SOURCE_DIR}/wrappers/SMath/coolprop_wrapper/Properties/AssemblyInfo.cs")
|
||||
message(STATUS "Generated ${CMAKE_SOURCE_DIR}/wrappers/SMath/coolprop_wrapper/Properties/AssemblyInfo.cs")
|
||||
FILE(WRITE "${CMAKE_SOURCE_DIR}/wrappers/SMath/config.ini" "${CMAKE_VERSION}")
|
||||
message(STATUS "Generated ${CMAKE_SOURCE_DIR}/wrappers/SMath/config.ini")
|
||||
CONFIGURE_FILE("${CMAKE_SOURCE_DIR}/wrappers/SMath/coolprop_wrapper/install.bat.template"
|
||||
"${CMAKE_SOURCE_DIR}/wrappers/SMath/coolprop_wrapper/install.bat")
|
||||
message(STATUS "Generated ${CMAKE_SOURCE_DIR}/wrappers/SMath/coolprop_wrapper/install.bat")
|
||||
CONFIGURE_FILE("${CMAKE_SOURCE_DIR}/wrappers/SMath/coolprop_wrapper/build_zip.bat.template"
|
||||
"${CMAKE_SOURCE_DIR}/wrappers/SMath/coolprop_wrapper/build_zip.bat")
|
||||
message(STATUS "Generated ${CMAKE_SOURCE_DIR}/wrappers/SMath/coolprop_wrapper/build_zip.bat")
|
||||
FILE(WRITE "${CMAKE_SOURCE_DIR}/wrappers/SMath/build.bat" "${CMAKE_MAKE_PROGRAM} coolprop_wrapper.sln /p:Configuration=Release")
|
||||
message(STATUS "Generated ${CMAKE_SOURCE_DIR}/wrappers/SMath/build.bat")
|
||||
|
||||
endif()
|
||||
|
||||
if (COOLPROP_MY_MAIN)
|
||||
list(APPEND APP_SOURCES "${COOLPROP_MY_MAIN}")
|
||||
add_executable (Main ${APP_SOURCES})
|
||||
|
||||
@@ -14,7 +14,7 @@ Option A: Calling shared library directly
|
||||
|
||||
.. warning::
|
||||
|
||||
For now, only 64-bit architectures are supported, and you need Julia version >= 0.4
|
||||
For now, only 64-bit architectures are supported.
|
||||
|
||||
Download a precompiled shared library appropriate to the computer you are using from :sfdownloads:`sourceforge <shared_library>` or the development version from :sfnightly:`the nightly snapshots <shared_library>`.
|
||||
|
||||
@@ -63,4 +63,4 @@ Usage::
|
||||
User-Compiled Binaries
|
||||
======================
|
||||
|
||||
Build the 64-bit shared library for your architecture following the instructions at :ref:`shared_library`.
|
||||
Build the 64-bit shared library for your architecture following the instructions at :ref:`shared_library`.
|
||||
|
||||
@@ -4,6 +4,53 @@
|
||||
SMathStudio Wrapper
|
||||
*******************
|
||||
|
||||
Pre-compiled Binaries
|
||||
=====================
|
||||
|
||||
To Use
|
||||
------
|
||||
|
||||
Pre-compiled binaries can be downloaded from :sfdownloads:`SMath`. Development binaries coming from the buildbot server can be found at :sfnightly:`SMath`.
|
||||
|
||||
Extract the files in the .7z file using 7-zip. Run the install.bat file in the zip file to copy the files to the right location. It will make the installed version of CoolProp the default CoolProp in SMath.
|
||||
|
||||
User-Compiled Binaries
|
||||
======================
|
||||
|
||||
Common Requirements
|
||||
-------------------
|
||||
Compilation of the SMath Studio wrapper requires a few :ref:`common wrapper pre-requisites <wrapper_common_prereqs>`
|
||||
|
||||
Native Wrapper
|
||||
--------------
|
||||
|
||||
0. Check out coolprop::
|
||||
|
||||
git clone https://github.com/CoolProp/CoolProp --recursive
|
||||
|
||||
1. Create a build directory ``build``::
|
||||
|
||||
mkdir build
|
||||
|
||||
2. In the ``build`` directory, run the command::
|
||||
|
||||
cmake .. -DCOOLPROP_SMATH_MODULE=ON
|
||||
|
||||
This will inject the version number in the appropriate format into a few template files using CMake
|
||||
|
||||
3. Open the VS2010 solution file in ``wrappers/SMath``. More recent versions of Visual Studio should be able to convert this project, including VS2013.
|
||||
|
||||
4. Make sure the mode is set to Release (not Debug). Build the project, the generated and copied files will be in ``bin/Release``.
|
||||
|
||||
5. From the :sfdownloads:`download page <shared_library>`, download the 64-bit DLL ``CoolProp.dll`` file from ``Windows/64bit`` folder and rename to ``CoolProp.x64.dll`` and place with the files in ``bin/Release``. Download the 32-bit ``__stdcall`` DLL ``CoolProp.dll`` from ``Windows/32bit__stdcall_calling_convention`` and rename to ``CoolProp.x86.dll`` and place with the files in ``bin/Release``.
|
||||
|
||||
6. Run the ``build_zip.bat`` file that is in the ``wrappers/SMath`` folder. It will create a zip file with the needed files.
|
||||
|
||||
7. To install, unzip the ``coolprop_wrapper.7z`` zip file and run the ``install.bat`` script that was in the zip file
|
||||
|
||||
Old Method
|
||||
==========
|
||||
|
||||
There are two ways to link CoolProp and SMathStudio :
|
||||
Remark: I used the first one, the second one isn't quite clear to me.
|
||||
|
||||
|
||||
@@ -47,7 +47,7 @@ mn = mail.MailNotifier(fromaddr="buildbot@coolprop.dreamhosters.com",
|
||||
|
||||
c['status'].append(mn)
|
||||
|
||||
####### BUILDSLAVES
|
||||
####### BUILDSLAVES
|
||||
|
||||
# The 'slaves' list defines the set of recognized buildslaves. Each element is
|
||||
# a BuildSlave object, specifying a unique slave name and password. The same
|
||||
@@ -271,7 +271,7 @@ def docActivateCmd():
|
||||
@properties.renderer
|
||||
def fullBuildCommand(props):
|
||||
return ' '.join([docActivateCmd(), "python", "__init__.py", str(props.getProperty('fullBuild', default = False) or props.getProperty('branch') == 'release')])
|
||||
|
||||
|
||||
@properties.renderer
|
||||
def rsyncCommand(props):
|
||||
"""
|
||||
@@ -285,14 +285,14 @@ def rsyncCommand(props):
|
||||
server_des = "{0}:{1}".format(server_uri, server_dir)
|
||||
#
|
||||
local_build_dir = 'Web/_build/html'
|
||||
|
||||
|
||||
if props.getProperty('branch') == 'release':
|
||||
server_target_dir = '{0}/public_html/release/sphinx'.format(server_des)
|
||||
elif props.getProperty('branch') == 'master':
|
||||
server_target_dir = '{0}/public_html/binaries/sphinx'.format(server_des)
|
||||
else:
|
||||
server_target_dir = '{0}/public_html/unstable/sphinx'.format(server_des)
|
||||
|
||||
|
||||
return ' '.join([docActivateCmd(), 'rsync', '-a', '--stats', '{0}/ {1}'.format(local_build_dir,server_target_dir)])
|
||||
|
||||
# All what is needed to create the website, it makes sense to run the
|
||||
@@ -572,6 +572,52 @@ def excel_slave(gitMode = 'incremental'):
|
||||
# Upload the files
|
||||
factory.addStep(DirectoryUpload(slavesrc="bin",masterdest=masterdestLocation,url="MicrosoftExcel",compress="bz2"))
|
||||
return factory
|
||||
|
||||
def smath_builder(gitMode = 'incremental'):
|
||||
"""
|
||||
"""
|
||||
working_folder = "build/build"
|
||||
|
||||
# Create the factory to add the actions to
|
||||
factory = getBaseFactory(gitMode=gitMode)
|
||||
#
|
||||
factory.addStep(MakeDirectory(dir='build/bin/SMath', haltOnFailure = True))
|
||||
factory.addStep(MakeDirectory(dir=working_folder+'/32bitDLL', haltOnFailure = True))
|
||||
factory.addStep(MakeDirectory(dir=working_folder+'/64bitDLL', haltOnFailure = True))
|
||||
factory.addStep(RemoveDirectory(dir="build/install_root", haltOnFailure = True))
|
||||
factory.addStep(ShellCommand(command=["cmake", "..", "-DCOOLPROP_SMATH_MODULE=ON","-G", "Visual Studio 10"],
|
||||
workdir= working_folder,
|
||||
haltOnFailure = True))
|
||||
# Build the SMath C# class library using visual studio
|
||||
factory.addStep(ShellCommand(command=["build"], workdir= 'build/wrappers/SMath', haltOnFailure = True))
|
||||
|
||||
# *************************
|
||||
# Make 32-bit __stdcall DLL
|
||||
# *************************
|
||||
factory.addStep(ShellCommand(command=["cmake", "../..", "-DCOOLPROP_32BIT_STDCALL_SHARED_LIBRARY=ON","-G", "Visual Studio 10"],
|
||||
workdir= working_folder+'/32bitDLL',
|
||||
haltOnFailure = True))
|
||||
factory.addStep(ShellCommand(command=["cmake", "--build", ".", "--target", "install", "--config", "Release"], workdir = working_folder+'/32bitDLL', haltOnFailure = True))
|
||||
# Copy the created DLL
|
||||
factory.addStep(ShellCommand(command=' '.join(["copy", "/Y", "install_root\\shared_library\\Windows\\32bit__stdcall_calling_convention\\CoolProp.dll", "wrappers\\SMath\\coolprop_wrapper\\bin\\Release\\CoolProp.x86.dll"]), workdir = 'build', haltOnFailure = True))
|
||||
|
||||
# ***************
|
||||
# Make 64-bit DLL
|
||||
# ***************
|
||||
factory.addStep(ShellCommand(command=["cmake", "../..", "-DCOOLPROP_64BIT_SHARED_LIBRARY=ON","-G", "Visual Studio 10 Win64"],
|
||||
workdir= working_folder+'/64bitDLL',
|
||||
haltOnFailure = True))
|
||||
factory.addStep(ShellCommand(command=["cmake", "--build", ".", "--target", "install", "--config", "Release"], workdir = working_folder+'/64bitDLL', haltOnFailure = True))
|
||||
|
||||
factory.addStep(MakeDirectory(dir='build\\bin\\MicrosoftExcel', haltOnFailure = True))
|
||||
factory.addStep(ShellCommand(command=' '.join(["copy", "/Y", "install_root\\shared_library\\Windows\\64bit\\CoolProp.dll", "wrappers\\SMath\\coolprop_wrapper\\bin\\Release\\CoolProp.x64.dll"]), workdir = 'build', haltOnFailure = True))
|
||||
|
||||
# Copy other files to a temporary directory
|
||||
factory.addStep(ShellCommand(command=["build_zip"], workdir = 'build\\wrappers\\SMath\\coolprop_wrapper', haltOnFailure = True))
|
||||
factory.addStep(ShellCommand(command=["copy", "/Y", "wrappers\\SMath\\coolprop_wrapper\\coolprop_wrapper.7z", "bin\\SMath"], workdir = 'build', haltOnFailure = True))
|
||||
# Upload the files
|
||||
factory.addStep(DirectoryUpload(slavesrc="bin",masterdest=masterdestLocation,url="SMath",compress="bz2"))
|
||||
return factory
|
||||
|
||||
def julia_builder(gitMode = 'incremental'):
|
||||
"""
|
||||
@@ -583,9 +629,12 @@ def julia_builder(gitMode = 'incremental'):
|
||||
# Clean the install_root
|
||||
factory.addStep(RemoveDirectory(dir="build/install_root/Julia", haltOnFailure = True))
|
||||
factory.addStep(MakeDirectory(dir='build/install_root/Julia', haltOnFailure = True))
|
||||
factory.addStep(MakeDirectory(dir='build/install_root/Julia/0.3', haltOnFailure = True))
|
||||
factory.addStep(MakeDirectory(dir='build/install_root/Julia/0.4', haltOnFailure = True))
|
||||
# Copy other files
|
||||
factory.addStep(ShellCommand(command=["cp", "wrappers/Julia/CoolProp.jl", "install_root/Julia"], workdir = 'build', haltOnFailure = True))
|
||||
# Upload the files
|
||||
factory.addStep(ShellCommand(command=["cp", "wrappers/Julia/0.3/CoolProp.jl", "install_root/Julia/0.3"], workdir = 'build', haltOnFailure = True))
|
||||
factory.addStep(ShellCommand(command=["cp", "wrappers/Julia/0.4/CoolProp.jl", "install_root/Julia/0.4"], workdir = 'build', haltOnFailure = True))
|
||||
# Upload the files - TODO: Is this the correct directory?
|
||||
factory.addStep(DirectoryUpload(slavesrc="install_root",masterdest=masterdestLocation,url="binaries",compress="bz2"))
|
||||
return factory
|
||||
|
||||
@@ -816,6 +865,10 @@ c['builders'].append(
|
||||
BuilderConfig(name="Excel",
|
||||
slavenames=["windows-slave"],
|
||||
factory = excel_slave() ) )
|
||||
c['builders'].append(
|
||||
BuilderConfig(name="SMath",
|
||||
slavenames=["windows-slave"],
|
||||
factory = smath_builder() ) )
|
||||
|
||||
|
||||
c['builders'].append(
|
||||
@@ -975,17 +1028,15 @@ for platform in ['OSX', 'linux', 'windows']:
|
||||
for wrapper in ['Java','Csharp','Octave','PHP','64BIT_SHARED_LIBRARY','STATIC_LIBRARY','MATHEMATICA','VBDOTNET']:
|
||||
if wrapper == 'PHP' and platform != 'linux': continue # only build PHP on linux
|
||||
if wrapper == 'VBDOTNET' and not platform.startswith('windows'): continue # only build VB.net on windows
|
||||
ctest_args, cmake_args, build_args = [], [], []
|
||||
ctest_args, cmake_args, build_args = [], [], ['--config','Release']
|
||||
if platform.startswith('windows'):
|
||||
ctest_args = ['-C', 'Release']
|
||||
if wrapper == 'Octave':
|
||||
cmake_args = ['-G', '"MinGW Makefiles"']
|
||||
elif wrapper == 'VBDOTNET':
|
||||
cmake_args = ['-G', '"Visual Studio 11 2012 Win64"']
|
||||
build_args = ['--config','Release']
|
||||
else:
|
||||
cmake_args = ['-G', '"Visual Studio 10 2010 Win64"']
|
||||
build_args = ['--config','Release']
|
||||
c['builders'].append(
|
||||
BuilderConfig(name=wrapper + "-" + platform,
|
||||
slavenames=[platform + "-slave"],
|
||||
@@ -1263,7 +1314,7 @@ c['titleURL'] = "https://www.coolprop.org"
|
||||
# with an externally-visible host name which the buildbot cannot figure out
|
||||
# without some help.
|
||||
|
||||
c['buildbotURL'] = "http://localhost:8010/"
|
||||
c['buildbotURL'] = "http://www.coolprop.dreamhosters.com:8010/"
|
||||
|
||||
####### DB URL
|
||||
|
||||
|
||||
@@ -1,5 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<CodeLite_Project Name="coolprop" InternalType="Console">
|
||||
<VirtualDirectory Name="externals">
|
||||
<VirtualDirectory Name="REFPROP-headers">
|
||||
<File Name="../../externals/REFPROP-headers/REFPROP_lib.h"/>
|
||||
</VirtualDirectory>
|
||||
</VirtualDirectory>
|
||||
<Plugins>
|
||||
<Plugin Name="qmake">
|
||||
<![CDATA[00020001N0005Debug0000000000000001N0007Release000000000000]]>
|
||||
@@ -67,7 +72,6 @@
|
||||
<File Name="../../src/Backends/REFPROP/REFPROPBackend.h"/>
|
||||
<File Name="../../src/Backends/REFPROP/REFPROPMixtureBackend.cpp"/>
|
||||
<File Name="../../src/Backends/REFPROP/REFPROPMixtureBackend.h"/>
|
||||
<File Name="../../src/Backends/REFPROP/REFPROP_lib.h"/>
|
||||
</VirtualDirectory>
|
||||
<VirtualDirectory Name="Tabular">
|
||||
<File Name="../../src/Backends/Tabular/TabularBackends.cpp"/>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<WorkspaceConfiguration Name="Debug" Selected="yes">
|
||||
<Project Name="coolprop" ConfigName="Debug"/>
|
||||
</WorkspaceConfiguration>
|
||||
<WorkspaceConfiguration Name="Release" Selected="no">
|
||||
<WorkspaceConfiguration Name="Release" Selected="yes">
|
||||
<Project Name="coolprop" ConfigName="Release"/>
|
||||
</WorkspaceConfiguration>
|
||||
</BuildMatrix>
|
||||
|
||||
@@ -40,6 +40,7 @@ class IncompressibleData(object):
|
||||
self.xData = None # In case you need a customised first data set (temperature?)
|
||||
self.yData = None # In case you need a customised second data set (concentration?)
|
||||
self.sErr = None # Coefficient of determination
|
||||
self.NRMS = None # Normalised RMS: (square root of the mean of the squares of the deviations)/(max-min)
|
||||
self.DEBUG = False
|
||||
|
||||
@staticmethod
|
||||
@@ -178,13 +179,20 @@ class IncompressibleData(object):
|
||||
self.coeffs = bestCoeffs
|
||||
self.type = bestType
|
||||
self.sErr = bestsErr
|
||||
if self.type == IncompressibleData.INCOMPRESSIBLE_POLYNOMIAL:
|
||||
self.NRMS = bestRMS/(np.nanmax(self.data)-np.nanmin(self.data))
|
||||
elif self.type == IncompressibleData.INCOMPRESSIBLE_EXPONENTIAL or \
|
||||
self.type == IncompressibleData.INCOMPRESSIBLE_EXPPOLYNOMIAL or \
|
||||
self.type == IncompressibleData.INCOMPRESSIBLE_LOGEXPONENTIAL:
|
||||
self.NRMS = bestRMS/(np.log(np.nanmax(self.data))-np.log(np.nanmin(self.data)))
|
||||
else:
|
||||
raise ValueError("Unknown function.")
|
||||
|
||||
#if self.DEBUG: print("Fitting statistics:")
|
||||
#SSE = np.square(self.sErr).sum() # Sum of squares due to error
|
||||
#SST = ((zData-zData.mean())**2).sum()
|
||||
#R2 = 1-(ssErr/ssTot )
|
||||
|
||||
|
||||
def setxData(self, xData):
|
||||
if self.xData is None:
|
||||
self.xData = xData
|
||||
@@ -210,6 +218,11 @@ class IncompressibleData(object):
|
||||
except:
|
||||
j['coeffs'] = 'null'
|
||||
|
||||
try:
|
||||
j['NRMS'] = self.NRMS
|
||||
except:
|
||||
j['NRMS'] = 'null'
|
||||
|
||||
j['type'] = self.type
|
||||
return j
|
||||
|
||||
@@ -220,7 +233,10 @@ class IncompressibleData(object):
|
||||
except:
|
||||
self.coeffs = None
|
||||
self.type = IncompressibleData.INCOMPRESSIBLE_NOT_SET
|
||||
|
||||
try:
|
||||
self.NRMS = j['NRMS']
|
||||
except:
|
||||
self.NRMS = None
|
||||
return
|
||||
|
||||
|
||||
|
||||
@@ -61,7 +61,7 @@ class SecCoolSolutionData(DigitalData):
|
||||
self.specific_heat.data *= 10.0
|
||||
self.specific_heat.source = self.specific_heat.SOURCE_DATA
|
||||
except:
|
||||
if self.density.DEBUG: print("Could not load {}".format(self.getFile("Cp")))
|
||||
if self.specific_heat.DEBUG: print("Could not load {}".format(self.getFile("Cp")))
|
||||
pass
|
||||
|
||||
try:
|
||||
@@ -70,7 +70,7 @@ class SecCoolSolutionData(DigitalData):
|
||||
self.conductivity.data *= 0.1
|
||||
self.conductivity.source = self.conductivity.SOURCE_DATA
|
||||
except:
|
||||
if self.density.DEBUG: print("Could not load {}".format(self.getFile("Cond")))
|
||||
if self.conductivity.DEBUG: print("Could not load {}".format(self.getFile("Cond")))
|
||||
pass
|
||||
|
||||
try:
|
||||
@@ -79,7 +79,7 @@ class SecCoolSolutionData(DigitalData):
|
||||
self.viscosity.data *= 0.1
|
||||
self.viscosity.source = self.viscosity.SOURCE_DATA
|
||||
except:
|
||||
if self.density.DEBUG: print("Could not load {}".format(self.getFile("Mu")))
|
||||
if self.viscosity.DEBUG: print("Could not load {}".format(self.getFile("Mu")))
|
||||
pass
|
||||
|
||||
|
||||
@@ -192,16 +192,17 @@ class SecCoolSolutionData(DigitalData):
|
||||
self.T_freeze.data = z.T
|
||||
try:
|
||||
self.T_freeze.source = self.T_freeze.SOURCE_DATA
|
||||
self.T_freeze.type = self.T_freeze.INCOMPRESSIBLE_EXPONENTIAL
|
||||
self.T_freeze.coeffs = np.array([+7e+6, +6e+4, +1e+1])
|
||||
self.T_freeze.fitCoeffs(self.Tbase,self.xbase)
|
||||
#self.T_freeze.type = self.T_freeze.INCOMPRESSIBLE_EXPONENTIAL
|
||||
#self.T_freeze.coeffs = np.array([+7e+6, +6e+4, +1e+1])
|
||||
self.T_freeze.coeffs = np.zeros(std_coeffs.shape)
|
||||
self.T_freeze.type = self.T_freeze.INCOMPRESSIBLE_EXPPOLYNOMIAL
|
||||
#if np.isfinite(self.T_freeze.data).sum()<10:
|
||||
# self.T_freeze.coeffs = np.array([+7e+6, +6e+4, +1e+1])
|
||||
# self.T_freeze.type = self.T_freeze.INCOMPRESSIBLE_EXPONENTIAL
|
||||
#else:
|
||||
# self.T_freeze.coeffs = np.zeros(np.round(np.array(std_coeffs.shape) * 2))
|
||||
# self.T_freeze.type = self.T_freeze.INCOMPRESSIBLE_EXPPOLYNOMIAL
|
||||
#self.T_freeze.fitCoeffs(self.Tbase,self.xbase)
|
||||
self.T_freeze.fitCoeffs(self.Tbase,self.xbase)
|
||||
except errList as ve:
|
||||
if self.T_freeze.DEBUG: print("{0}: Could not fit {1} coefficients: {2}".format(self.name,"T_freeze",ve))
|
||||
pass
|
||||
|
||||
@@ -4,6 +4,7 @@ from __future__ import division, print_function
|
||||
import numpy as np
|
||||
|
||||
import matplotlib
|
||||
import copy
|
||||
matplotlib.use("agg")
|
||||
|
||||
import hashlib, os, json, sys
|
||||
@@ -102,12 +103,12 @@ class SolutionDataWriter(object):
|
||||
self.isportrait = True
|
||||
self.resolveRef = True # Resolve references and print text
|
||||
|
||||
# Latex document mode
|
||||
#self.ext = "pgf"
|
||||
#self.usebp = True
|
||||
#self.ispage = False # Do you want a page or a figure?
|
||||
#self.isportrait = True
|
||||
#self.resolveRef = False # Resolve references and print text
|
||||
# # Latex document mode
|
||||
# self.ext = "pgf"
|
||||
# self.usebp = True
|
||||
# self.ispage = False # Do you want a page or a figure?
|
||||
# self.isportrait = True
|
||||
# self.resolveRef = False # Resolve references and print text
|
||||
|
||||
if self.ext=="pgf" or matplotlib.rcParams['text.usetex']:
|
||||
self.usetex = True
|
||||
@@ -1519,6 +1520,213 @@ class SolutionDataWriter(object):
|
||||
|
||||
return True
|
||||
|
||||
def generateStatsTable(self, objLists=[[SolutionData()]], labelList=[]):
|
||||
|
||||
if len(objLists)!=len(labelList):
|
||||
raise ValueError("Wrong length")
|
||||
|
||||
|
||||
header = [u'Property']
|
||||
header.extend(labelList)
|
||||
|
||||
testTable = []
|
||||
testTable.append(header) # Headline
|
||||
|
||||
def getEntries(solObj):
|
||||
data = {}
|
||||
data["name"] = dict(type=solObj.name,nrms=solObj.name)
|
||||
|
||||
kt = [("density",solObj.density),
|
||||
("specific_heat",solObj.specific_heat),
|
||||
("conductivity",solObj.conductivity),
|
||||
("viscosity",solObj.viscosity),
|
||||
("saturation_pressure",solObj.saturation_pressure),
|
||||
("T_freeze",solObj.T_freeze)]
|
||||
|
||||
for k,_ in kt: data[k]={}
|
||||
|
||||
for k,t in kt:
|
||||
try:
|
||||
data[k]["type"] = t.type
|
||||
except:
|
||||
data[k]["type"] = None
|
||||
try:
|
||||
data[k]["nrms"] = t.NRMS
|
||||
except:
|
||||
data[k]["nrms"] = None
|
||||
|
||||
return data
|
||||
|
||||
errcolumns = []
|
||||
typcolumns = []
|
||||
for group in objLists:
|
||||
errcolumn = {}
|
||||
typcolumn = {}
|
||||
for obj in group:
|
||||
dat = getEntries(obj)
|
||||
for k in dat:
|
||||
ent = errcolumn.get(k,[])
|
||||
ent.append(dat[k]["nrms"])
|
||||
errcolumn[k] = ent
|
||||
ent = typcolumn.get(k,[])
|
||||
ent.append(dat[k]["type"])
|
||||
typcolumn[k] = ent
|
||||
for k in errcolumn:
|
||||
if k!="name":
|
||||
for i,_ in enumerate(errcolumn[k]):
|
||||
try:
|
||||
errcolumn[k][i] = float(errcolumn[k][i])
|
||||
except:
|
||||
errcolumn[k][i] = np.NAN
|
||||
#try:
|
||||
# typcolumn[k][i] = float(typcolumn[k][i])
|
||||
#except:
|
||||
# typcolumn[k][i] = np.NAN
|
||||
|
||||
errcolumns.append(errcolumn)
|
||||
typcolumns.append(typcolumn)
|
||||
|
||||
keys = errcolumns[0].keys()
|
||||
|
||||
errTable = copy.copy(testTable)
|
||||
typTable = copy.copy(testTable)
|
||||
|
||||
for k in keys:
|
||||
if k != "name":
|
||||
# Error lines
|
||||
maxLine = []
|
||||
avgLine = []
|
||||
minLine = []
|
||||
|
||||
minLine.append("{0:25s}".format(k))
|
||||
avgLine.append("{0:25s}".format(""))
|
||||
maxLine.append("{0:25s}".format(""))
|
||||
|
||||
# Function type lines
|
||||
polyLine = []
|
||||
expoLine = []
|
||||
logeLine = []
|
||||
expPLine = []
|
||||
|
||||
polyLine.append("{0:25s}".format(k))
|
||||
expoLine.append("{0:25s}".format("exp"))
|
||||
logeLine.append("{0:25s}".format("logexp"))
|
||||
expPLine.append("{0:25s}".format("exppoly"))
|
||||
|
||||
#print(k+": ", end="")
|
||||
for e,t in zip(errcolumns,typcolumns):
|
||||
try: mi = np.nanargmin(e[k])
|
||||
except: mi = 0
|
||||
try: ma = np.nanargmax(e[k])
|
||||
except: ma = 0
|
||||
try: av = np.nanmean(e[k])
|
||||
except: av = 0.0
|
||||
#print("min: {0}({1}), avg: {2}, max: {3}({4})".format(c[k][mi],c["name"][mi],av,c[k][ma],c["name"][ma]),end="")
|
||||
minLine.append("{0:5.3f} ({1:5s})".format(e[k][mi]*100.0,e["name"][mi]))
|
||||
avgLine.append("{0:5.3f} {1:5s} ".format( av*100.0,""))
|
||||
maxLine.append("{0:5.3f} ({1:5s})".format(e[k][ma]*100.0,e["name"][ma]))
|
||||
|
||||
polyLine.append("{0:3d}".format(t[k].count(IncompressibleData.INCOMPRESSIBLE_POLYNOMIAL)))
|
||||
expoLine.append("{0:3d}".format(t[k].count(IncompressibleData.INCOMPRESSIBLE_EXPONENTIAL)))
|
||||
logeLine.append("{0:3d}".format(t[k].count(IncompressibleData.INCOMPRESSIBLE_LOGEXPONENTIAL)))
|
||||
expPLine.append("{0:3d}".format(t[k].count(IncompressibleData.INCOMPRESSIBLE_EXPPOLYNOMIAL)))
|
||||
print(t[k])
|
||||
|
||||
#print(" ")
|
||||
errTable.append(minLine)
|
||||
errTable.append(avgLine)
|
||||
errTable.append(maxLine)
|
||||
errTable.append([r"\midrule"])
|
||||
|
||||
typTable.append(polyLine)
|
||||
typTable.append(expoLine)
|
||||
typTable.append(logeLine)
|
||||
typTable.append(expPLine)
|
||||
typTable.append([r"\midrule"])
|
||||
|
||||
|
||||
errString = ""
|
||||
for lin in errTable:
|
||||
errString += " & ".join(lin) + "\\\\ \n"
|
||||
print(errString)
|
||||
|
||||
typString = ""
|
||||
for lin in typTable:
|
||||
typString += " & ".join(lin) + "\\\\ \n"
|
||||
print(typString)
|
||||
|
||||
return True
|
||||
#
|
||||
#
|
||||
#
|
||||
# figPath = r"appendices/IncompressibleFluidsReports/"
|
||||
#
|
||||
# # def getFigureText(fld):
|
||||
# # text = "\\begin{pgffigure} \n"
|
||||
# # text += "\\fbox{\\resizebox{\\textwidth}{!}{ \n"
|
||||
# # text += "\\subimport{"+str(figPath)+"}{"+str(fld)+"_fitreport.pgf} \n"
|
||||
# # text += "}} \n"
|
||||
# # text += "\\end{pgffigure} \n"
|
||||
# # return text
|
||||
# def getFigureText(fld):
|
||||
# text = "{\\centering"
|
||||
# text += "\\resizebox{\\textwidth}{!}{ \n"
|
||||
# text += "\\subimport{"+str(figPath)+"}{"+str(fld)+"_fitreport.pgf} \n"
|
||||
# text += "}} \\vfill \n"
|
||||
# return text
|
||||
#
|
||||
# def getFigureLabel(fld):
|
||||
# return "subsec:fit"+str(fld)
|
||||
#
|
||||
# for fluid in solObjs:
|
||||
# #\hyperref[label_name]{''link text''}
|
||||
# testTable.append([
|
||||
# fluid.name+", p.~\\pageref{"+getFigureLabel(fluid.name)+"}",
|
||||
# fluid.description.encode("latex"),
|
||||
# r'\cite{'+str(fluid.reference)+'}',
|
||||
# self.c(fluid.Tmin),
|
||||
# self.c(fluid.Tmax),
|
||||
# self.c(fluid.Tbase+273.15)
|
||||
# ])
|
||||
# if use_x: testTable[-1].extend([self.x(fluid.xmin), self.x(fluid.xmax)])
|
||||
#
|
||||
# testSection.append([
|
||||
# "\\subsection{Fitted functions for "+str(fluid.name)+"}",
|
||||
# "\\label{"+getFigureLabel(fluid.name)+"}",
|
||||
# getFigureText(fluid.name)
|
||||
# ])
|
||||
#
|
||||
# text = "\\cr \\topcrule \n"
|
||||
# i = -1
|
||||
# for row in testTable:
|
||||
# i += 1
|
||||
# if i < 1:
|
||||
# tmp = r"\headcol "+" & ".join(row)
|
||||
# elif i % 2 == 0:
|
||||
# tmp = r"\rowcol " +" & ".join(row)
|
||||
# else:
|
||||
# tmp = " & ".join(row)
|
||||
# text += tmp + " \\\\\n"
|
||||
# if i == 0: text += "\\midcrule \n"
|
||||
#
|
||||
# if i % 2 == 0:
|
||||
# text += "\\bottomcrule \\cr \n"
|
||||
# else:
|
||||
# text += "\\bottomrule \\cr \n"
|
||||
#
|
||||
# with open(path+".tex", 'w') as f:
|
||||
# f.write(text.encode('utf-8'))
|
||||
#
|
||||
# text = "\n"
|
||||
# for i,row in enumerate(testSection):
|
||||
# tmp = "\n".join(row)
|
||||
# text += tmp + " \n\n"
|
||||
#
|
||||
# with open(path+"-section.tex", 'w') as f:
|
||||
# f.write(text.encode('utf-8'))
|
||||
#
|
||||
# return True
|
||||
|
||||
def generateRstTable(self, solObjs=[SolutionData()], path="table"):
|
||||
|
||||
solObjs = sorted(solObjs, key=lambda x: x.name)
|
||||
|
||||
@@ -34,6 +34,7 @@ if __name__ == '__main__':
|
||||
parser.add_argument("-nr","--noreports", action='store_true', help="Do not write the fitting reports")
|
||||
parser.add_argument("-ns","--nosummary", action='store_true', help="Do not generate the summary figures")
|
||||
parser.add_argument("-nt","--notables", action='store_true', help="Do not write the fluid tables")
|
||||
parser.add_argument("-nst","--nostats", action='store_true', help="Do not process statistical parameters")
|
||||
#parser.add_argument("-f","--fluid", help="Only process the fluid FLUID")
|
||||
|
||||
args = parser.parse_args()
|
||||
@@ -50,6 +51,8 @@ if __name__ == '__main__':
|
||||
else: runSummary = True
|
||||
if args.notables: runTables = False
|
||||
else: runTables = True
|
||||
if args.nostats: runStats = False
|
||||
else: runStats = True
|
||||
#if args.fluid: onlyFluid = args.fluid
|
||||
#else: onlyFluid = None
|
||||
|
||||
@@ -258,6 +261,17 @@ if __name__ == '__main__':
|
||||
writer.generateRstTable(objLists[i], filLists[i])
|
||||
writer.generateTexTable(objLists[i], filLists[i])
|
||||
|
||||
if runStats:
|
||||
lists = [purefluids, solMass, solVolu]#, solMole, errors]
|
||||
labels = ["Pure", "Mass", "Volume"]#, "Mole", "Error"]
|
||||
|
||||
fits = ["rho", "cp", "visc", "cond", "psat", "Tfreeze"]
|
||||
|
||||
writer.generateStatsTable(lists, labels)
|
||||
|
||||
|
||||
|
||||
|
||||
print("All done, bye")
|
||||
sys.exit(0)
|
||||
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": 2.210494e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
5.534468e+00,
|
||||
@@ -17,6 +18,7 @@
|
||||
"Tmin": 2.381500e+02,
|
||||
"TminPsat": 3.731500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 8.954423e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
4.453745e-01,
|
||||
@@ -54,6 +56,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 1.741777e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
1.047337e+03,
|
||||
@@ -68,19 +71,19 @@
|
||||
-3.001582e-01,
|
||||
-3.952614e-02,
|
||||
2.496264e-02,
|
||||
-6.817575e-02,
|
||||
-6.817576e-02,
|
||||
0.000000e+00
|
||||
],
|
||||
[
|
||||
-2.432696e-03,
|
||||
-2.084384e-05,
|
||||
3.108352e-04,
|
||||
3.108353e-04,
|
||||
-8.979712e-04,
|
||||
0.000000e+00,
|
||||
0.000000e+00
|
||||
],
|
||||
[
|
||||
-3.725220e-09,
|
||||
-3.725199e-09,
|
||||
1.044785e-06,
|
||||
-4.391164e-06,
|
||||
0.000000e+00,
|
||||
@@ -92,6 +95,7 @@
|
||||
},
|
||||
"description": "ASHRAE, Ethylene Glycol",
|
||||
"mass2input": {
|
||||
"NRMS": 5.523689e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
3.256146e-01,
|
||||
@@ -105,16 +109,19 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "AEG",
|
||||
"reference": "ASHRAE2001,Skovrup2013",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 2.198741e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
3.596551e+03,
|
||||
@@ -128,12 +135,12 @@
|
||||
3.096886e+00,
|
||||
5.184379e+00,
|
||||
-7.061384e-01,
|
||||
7.949891e-01,
|
||||
7.949890e-01,
|
||||
-6.689394e-01,
|
||||
0.000000e+00
|
||||
],
|
||||
[
|
||||
-3.388641e-05,
|
||||
-3.388642e-05,
|
||||
3.639717e-04,
|
||||
9.169943e-04,
|
||||
-5.359818e-03,
|
||||
@@ -141,7 +148,7 @@
|
||||
0.000000e+00
|
||||
],
|
||||
[
|
||||
3.171279e-07,
|
||||
3.171278e-07,
|
||||
-2.457344e-06,
|
||||
1.419543e-05,
|
||||
0.000000e+00,
|
||||
@@ -152,6 +159,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 2.912025e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
-6.319551e+00,
|
||||
@@ -189,6 +197,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": 6.279916e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
5.491549e+00,
|
||||
@@ -17,6 +18,7 @@
|
||||
"Tmin": 2.331500e+02,
|
||||
"TminPsat": 3.231500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 1.732572e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
5.030335e-01,
|
||||
@@ -54,6 +56,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 1.195609e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
1.263793e+03,
|
||||
@@ -92,6 +95,7 @@
|
||||
},
|
||||
"description": "Antifrogen KF, Potassium Formate",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
0.000000e+00,
|
||||
@@ -129,16 +133,19 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "AKF",
|
||||
"reference": "Clariant2000,Skovrup2013",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 4.090011e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
2.866685e+03,
|
||||
@@ -165,7 +172,7 @@
|
||||
0.000000e+00
|
||||
],
|
||||
[
|
||||
5.920685e-06,
|
||||
5.920686e-06,
|
||||
-3.288615e-05,
|
||||
2.921777e-04,
|
||||
0.000000e+00,
|
||||
@@ -176,6 +183,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 1.088590e-02,
|
||||
"coeffs": [
|
||||
[
|
||||
-5.822490e+00,
|
||||
@@ -213,6 +221,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": 5.592130e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
5.543667e+00,
|
||||
@@ -17,6 +18,7 @@
|
||||
"Tmin": 2.331500e+02,
|
||||
"TminPsat": 3.531500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 9.879270e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
4.393085e-01,
|
||||
@@ -54,6 +56,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 2.701146e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
1.034271e+03,
|
||||
@@ -92,6 +95,7 @@
|
||||
},
|
||||
"description": "Antifrogen L, Propylene Glycol",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
0.000000e+00,
|
||||
@@ -129,16 +133,19 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "AL",
|
||||
"reference": "Clariant2000,Skovrup2013",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 2.609976e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
3.807565e+03,
|
||||
@@ -165,7 +172,7 @@
|
||||
0.000000e+00
|
||||
],
|
||||
[
|
||||
1.986851e-07,
|
||||
1.986850e-07,
|
||||
1.828594e-04,
|
||||
3.746526e-05,
|
||||
0.000000e+00,
|
||||
@@ -176,6 +183,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 3.416274e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
-7.795892e+00,
|
||||
@@ -213,6 +221,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": 5.700698e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
5.531086e+00,
|
||||
@@ -17,6 +18,7 @@
|
||||
"Tmin": 2.331500e+02,
|
||||
"TminPsat": 3.531500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 1.178725e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
4.577828e-01,
|
||||
@@ -54,6 +56,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 2.175709e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
1.057935e+03,
|
||||
@@ -81,7 +84,7 @@
|
||||
],
|
||||
[
|
||||
6.109526e-06,
|
||||
-4.775087e-06,
|
||||
-4.775086e-06,
|
||||
4.962356e-05,
|
||||
0.000000e+00,
|
||||
0.000000e+00,
|
||||
@@ -92,6 +95,7 @@
|
||||
},
|
||||
"description": "Antifrogen N, Ethylene Glycol",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
0.000000e+00,
|
||||
@@ -129,16 +133,19 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "AN",
|
||||
"reference": "Clariant2000,Skovrup2013",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 2.419356e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
3.629767e+03,
|
||||
@@ -176,6 +183,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 4.973080e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
-8.174832e+00,
|
||||
@@ -213,6 +221,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": 7.544460e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
5.546103e+00,
|
||||
@@ -17,6 +18,7 @@
|
||||
"Tmin": 2.381500e+02,
|
||||
"TminPsat": 3.731500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 8.893185e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
4.329771e-01,
|
||||
@@ -54,6 +56,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 2.884772e-05,
|
||||
"coeffs": [
|
||||
[
|
||||
1.026177e+03,
|
||||
@@ -80,9 +83,9 @@
|
||||
0.000000e+00
|
||||
],
|
||||
[
|
||||
-5.177322e-09,
|
||||
9.673177e-09,
|
||||
3.368862e-07,
|
||||
-5.177306e-09,
|
||||
9.673179e-09,
|
||||
3.368863e-07,
|
||||
0.000000e+00,
|
||||
0.000000e+00,
|
||||
0.000000e+00
|
||||
@@ -92,6 +95,7 @@
|
||||
},
|
||||
"description": "ASHRAE, Propylene Glycol",
|
||||
"mass2input": {
|
||||
"NRMS": 4.618214e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
3.444914e-01,
|
||||
@@ -105,16 +109,19 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "APG",
|
||||
"reference": "ASHRAE2001,Skovrup2013",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 2.517344e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
3.815392e+03,
|
||||
@@ -134,15 +141,15 @@
|
||||
],
|
||||
[
|
||||
4.165345e-05,
|
||||
-9.032070e-05,
|
||||
-9.032069e-05,
|
||||
-3.392169e-03,
|
||||
1.079472e-02,
|
||||
0.000000e+00,
|
||||
0.000000e+00
|
||||
],
|
||||
[
|
||||
-4.309480e-07,
|
||||
-1.335181e-06,
|
||||
-4.309481e-07,
|
||||
-1.335180e-06,
|
||||
3.538903e-05,
|
||||
0.000000e+00,
|
||||
0.000000e+00,
|
||||
@@ -152,6 +159,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 2.045019e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
-8.328410e+00,
|
||||
@@ -189,6 +197,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 2.631500e+02,
|
||||
"TminPsat": 3.031500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
5.142590e-01
|
||||
@@ -19,6 +21,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
1.090000e+03
|
||||
@@ -37,20 +40,24 @@
|
||||
},
|
||||
"description": "Aspen Temper -10, Potassium acetate/formate",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "AS10",
|
||||
"reference": "Aspen2001,Skovrup2013",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
3.541830e+03
|
||||
@@ -65,6 +72,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
2.801549e+00
|
||||
@@ -82,6 +90,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 2.531500e+02,
|
||||
"TminPsat": 3.031500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
4.807660e-01
|
||||
@@ -19,6 +21,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
1.147000e+03
|
||||
@@ -37,20 +40,24 @@
|
||||
},
|
||||
"description": "Aspen Temper -20, Potassium acetate/formate",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "AS20",
|
||||
"reference": "Aspen2001,Skovrup2013",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
3.262520e+03
|
||||
@@ -65,6 +72,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 5.265767e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
1.227065e+00
|
||||
@@ -82,6 +90,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 2.431500e+02,
|
||||
"TminPsat": 3.031500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
4.603880e-01
|
||||
@@ -19,6 +21,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
1.183859e+03
|
||||
@@ -37,20 +40,24 @@
|
||||
},
|
||||
"description": "Aspen Temper -30, Potassium acetate/formate",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "AS30",
|
||||
"reference": "Aspen2001,Skovrup2013",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
3.075040e+03
|
||||
@@ -65,6 +72,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 1.100435e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
1.378598e+00
|
||||
@@ -82,6 +90,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 2.331500e+02,
|
||||
"TminPsat": 3.031500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
4.433270e-01
|
||||
@@ -19,6 +21,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
1.214840e+03
|
||||
@@ -37,20 +40,24 @@
|
||||
},
|
||||
"description": "Aspen Temper -40, Potassium acetate/formate",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "AS40",
|
||||
"reference": "Aspen2001,Skovrup2013",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
2.977880e+03
|
||||
@@ -65,6 +72,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 1.052821e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
1.628884e+00
|
||||
@@ -82,6 +90,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 2.181500e+02,
|
||||
"TminPsat": 3.031500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
4.257994e-01
|
||||
@@ -22,6 +24,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
1.249753e+03
|
||||
@@ -40,20 +43,24 @@
|
||||
},
|
||||
"description": "Aspen Temper -55, Potassium acetate/formate",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "AS55",
|
||||
"reference": "Aspen2001,Skovrup2013",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
2.839850e+03
|
||||
@@ -68,6 +75,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 2.815943e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
1.855893e+00
|
||||
@@ -85,6 +93,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 1.931500e+02,
|
||||
"TminPsat": 3.731500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
1.891320e-01
|
||||
@@ -19,6 +21,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
1.076500e+03
|
||||
@@ -31,20 +34,24 @@
|
||||
},
|
||||
"description": "Diethylbenzene mixture - Dowtherm J",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "DEB",
|
||||
"reference": "Melinder2010",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
9.997290e+02
|
||||
@@ -56,6 +63,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
3.550300e+00
|
||||
@@ -70,6 +78,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 1.931500e+02,
|
||||
"TminPsat": 3.231500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 1.538572e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
1.045182e-01
|
||||
@@ -25,6 +27,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 5.057367e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
7.754589e+02
|
||||
@@ -43,16 +46,19 @@
|
||||
},
|
||||
"description": "DowthermJ",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "DowJ",
|
||||
"reference": "Dow1997",
|
||||
"saturation_pressure": {
|
||||
"NRMS": 3.167521e-03,
|
||||
"coeffs": [
|
||||
-2.573167e+02,
|
||||
-4.781005e+00,
|
||||
@@ -61,6 +67,7 @@
|
||||
"type": "logexponential"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 9.146301e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
2.200296e+03
|
||||
@@ -78,6 +85,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 9.360408e-03,
|
||||
"coeffs": [
|
||||
7.061790e+02,
|
||||
-6.414427e+01,
|
||||
@@ -86,6 +94,7 @@
|
||||
"type": "exponential"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 2.001500e+02,
|
||||
"TminPsat": 5.881500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 9.343322e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
1.244832e-01
|
||||
@@ -25,6 +27,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 2.450629e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
7.844671e+02
|
||||
@@ -43,20 +46,24 @@
|
||||
},
|
||||
"description": "Dowtherm J, Diethylbenzene mixture",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "DowJ2",
|
||||
"reference": "Dow1997,Skovrup2013",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 3.754365e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
2.166752e+03
|
||||
@@ -74,6 +81,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 4.084423e-03,
|
||||
"coeffs": [
|
||||
6.576327e+02,
|
||||
-7.405196e+01,
|
||||
@@ -82,6 +90,7 @@
|
||||
"type": "exponential"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 2.381500e+02,
|
||||
"TminPsat": 3.931500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 6.550281e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
1.024267e-01
|
||||
@@ -25,6 +27,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 1.937877e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
8.575028e+02
|
||||
@@ -43,16 +46,19 @@
|
||||
},
|
||||
"description": "DowthermQ",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "DowQ",
|
||||
"reference": "Dow1997",
|
||||
"saturation_pressure": {
|
||||
"NRMS": 7.520851e-03,
|
||||
"coeffs": [
|
||||
-3.242462e+02,
|
||||
-4.472192e+00,
|
||||
@@ -61,6 +67,7 @@
|
||||
"type": "logexponential"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 2.969464e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
2.095464e+03
|
||||
@@ -78,6 +85,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 7.974999e-03,
|
||||
"coeffs": [
|
||||
8.286090e+02,
|
||||
-1.232876e+02,
|
||||
@@ -86,6 +94,7 @@
|
||||
"type": "exponential"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 2.381500e+02,
|
||||
"TminPsat": 6.031500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 2.028263e-02,
|
||||
"coeffs": [
|
||||
[
|
||||
1.129635e-01
|
||||
@@ -25,6 +27,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 1.558347e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
8.736856e+02
|
||||
@@ -43,20 +46,24 @@
|
||||
},
|
||||
"description": "Dowtherm Q, Diphenylethane/alkylated aromatics",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "DowQ2",
|
||||
"reference": "Dow1997,Skovrup2013",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 9.926756e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
2.052103e+03
|
||||
@@ -74,6 +81,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 5.452126e-03,
|
||||
"coeffs": [
|
||||
8.324351e+02,
|
||||
-1.220344e+02,
|
||||
@@ -82,6 +90,7 @@
|
||||
"type": "exponential"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
7.000000e+02,
|
||||
-6.000000e+01,
|
||||
@@ -12,6 +13,7 @@
|
||||
"Tmin": 2.730000e+02,
|
||||
"TminPsat": 2.730000e+02,
|
||||
"conductivity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
0.000000e+00,
|
||||
@@ -49,13 +51,14 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 1.494179e-06,
|
||||
"coeffs": [
|
||||
[
|
||||
8.229999e+02,
|
||||
4.865001e+02,
|
||||
1.452455e-03,
|
||||
-6.440350e-03,
|
||||
-8.477387e-03,
|
||||
1.452454e-03,
|
||||
-6.440367e-03,
|
||||
-8.477385e-03,
|
||||
1.756515e-02
|
||||
],
|
||||
[
|
||||
@@ -67,17 +70,17 @@
|
||||
0.000000e+00
|
||||
],
|
||||
[
|
||||
1.022318e-08,
|
||||
4.058105e-08,
|
||||
1.022329e-08,
|
||||
4.058102e-08,
|
||||
-1.062292e-07,
|
||||
-2.782326e-07,
|
||||
-2.782324e-07,
|
||||
0.000000e+00,
|
||||
0.000000e+00
|
||||
],
|
||||
[
|
||||
4.001641e-10,
|
||||
5.493741e-11,
|
||||
-3.138218e-09,
|
||||
4.002781e-10,
|
||||
5.493776e-11,
|
||||
-3.138207e-09,
|
||||
0.000000e+00,
|
||||
0.000000e+00,
|
||||
0.000000e+00
|
||||
@@ -87,16 +90,19 @@
|
||||
},
|
||||
"description": "some fluid",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "ExampleDigital",
|
||||
"reference": "none",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
0.000000e+00,
|
||||
@@ -134,13 +140,14 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 1.720450e-06,
|
||||
"coeffs": [
|
||||
[
|
||||
8.366499e+02,
|
||||
4.364991e+02,
|
||||
4.205855e-04,
|
||||
1.299601e-02,
|
||||
2.128749e-03,
|
||||
4.205851e-04,
|
||||
1.299599e-02,
|
||||
2.128750e-03,
|
||||
-3.598992e-02
|
||||
],
|
||||
[
|
||||
@@ -152,17 +159,17 @@
|
||||
0.000000e+00
|
||||
],
|
||||
[
|
||||
1.642442e-08,
|
||||
1.864578e-08,
|
||||
1.642450e-08,
|
||||
1.864575e-08,
|
||||
-1.661903e-07,
|
||||
-2.168919e-07,
|
||||
-2.168917e-07,
|
||||
0.000000e+00,
|
||||
0.000000e+00
|
||||
],
|
||||
[
|
||||
2.556074e-10,
|
||||
7.808459e-10,
|
||||
-8.067911e-11,
|
||||
2.557237e-10,
|
||||
7.808462e-10,
|
||||
-8.066814e-11,
|
||||
0.000000e+00,
|
||||
0.000000e+00,
|
||||
0.000000e+00
|
||||
@@ -171,6 +178,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
0.000000e+00,
|
||||
@@ -208,6 +216,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 2.800000e+02,
|
||||
"TminPsat": 2.800000e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 4.700863e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
1.054674e+00
|
||||
@@ -25,6 +27,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 3.017280e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
1.192776e+03
|
||||
@@ -43,16 +46,19 @@
|
||||
},
|
||||
"description": "water at 100 bar",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "ExampleDigitalPure",
|
||||
"reference": "none",
|
||||
"saturation_pressure": {
|
||||
"NRMS": 2.485303e-04,
|
||||
"coeffs": [
|
||||
-3.854484e+03,
|
||||
-4.425504e+01,
|
||||
@@ -61,6 +67,7 @@
|
||||
"type": "exponential"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 1.382824e-01,
|
||||
"coeffs": [
|
||||
[
|
||||
3.688015e+03
|
||||
@@ -78,6 +85,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 4.275252e-03,
|
||||
"coeffs": [
|
||||
3.655034e+02,
|
||||
-1.736257e+02,
|
||||
@@ -86,6 +94,7 @@
|
||||
"type": "exponential"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
2.468600e+02,
|
||||
@@ -17,6 +18,7 @@
|
||||
"Tmin": 2.231500e+02,
|
||||
"TminPsat": 3.131500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
4.175000e-01,
|
||||
@@ -54,6 +56,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
9.581000e+02,
|
||||
@@ -92,20 +95,24 @@
|
||||
},
|
||||
"description": "Methanol solution",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "ExampleMelinder",
|
||||
"reference": "Melinder2010",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
3.887000e+03,
|
||||
@@ -143,6 +150,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
-5.754755e+00,
|
||||
@@ -180,6 +188,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 3.231500e+02,
|
||||
"TminPsat": 4.231500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 1.485728e-02,
|
||||
"coeffs": [
|
||||
[
|
||||
9.648019e-02
|
||||
@@ -25,6 +27,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 5.272078e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
7.024452e+02
|
||||
@@ -43,24 +46,28 @@
|
||||
},
|
||||
"description": "Heat transfer fluid TherminolD12 by Solutia",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "ExamplePure",
|
||||
"reference": "Solutia data sheet",
|
||||
"saturation_pressure": {
|
||||
"NRMS": 6.550487e-03,
|
||||
"coeffs": [
|
||||
-3.663549e+03,
|
||||
-7.399696e+01,
|
||||
-7.399698e+01,
|
||||
-1.400146e+01
|
||||
],
|
||||
"type": "exponential"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 5.181986e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
2.446529e+03
|
||||
@@ -78,14 +85,16 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 4.390378e-03,
|
||||
"coeffs": [
|
||||
1.324503e+03,
|
||||
-7.727848e+00,
|
||||
4.420220e+00
|
||||
1.324502e+03,
|
||||
-7.728096e+00,
|
||||
4.420218e+00
|
||||
],
|
||||
"type": "exponential"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
2.775556e-01,
|
||||
2.501768e+02,
|
||||
@@ -14,6 +15,7 @@
|
||||
"Tmin": 2.231500e+02,
|
||||
"TminPsat": 2.931500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
4.082067e-01,
|
||||
@@ -51,6 +53,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
9.602467e+02,
|
||||
@@ -89,20 +92,24 @@
|
||||
},
|
||||
"description": "Methanol solution",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "ExampleSecCool",
|
||||
"reference": "SecCool software",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
3.822971e+03,
|
||||
@@ -140,6 +147,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
1.472553e+00,
|
||||
@@ -177,6 +185,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
7.000000e+02,
|
||||
-6.000000e+01,
|
||||
@@ -12,6 +13,7 @@
|
||||
"Tmin": 2.281500e+02,
|
||||
"TminPsat": 2.631500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
0.000000e+00,
|
||||
@@ -49,6 +51,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 1.292165e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
1.026081e+03,
|
||||
@@ -87,16 +90,19 @@
|
||||
},
|
||||
"description": "Ethanol ice slurry",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "ExampleSolution",
|
||||
"reference": "SecCool software,Skovrup2013",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
0.000000e+00,
|
||||
@@ -134,6 +140,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 1.292165e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
1.026081e+03,
|
||||
@@ -171,6 +178,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
0.000000e+00,
|
||||
@@ -208,6 +216,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": 3.097559e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
3.053914e+02,
|
||||
@@ -17,6 +18,7 @@
|
||||
"Tmin": 2.330000e+02,
|
||||
"TminPsat": 3.130000e+02,
|
||||
"conductivity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
5.500000e-01,
|
||||
@@ -30,6 +32,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
1.015000e+03,
|
||||
@@ -46,20 +49,24 @@
|
||||
},
|
||||
"description": "Freezium, Potassium Formate",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "FRE",
|
||||
"reference": "Kemira1998,Skovrup2013",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 2.778731e-06,
|
||||
"coeffs": [
|
||||
[
|
||||
4.150105e+03,
|
||||
@@ -70,7 +77,7 @@
|
||||
-4.617142e+01
|
||||
],
|
||||
[
|
||||
1.330613e-04,
|
||||
1.330618e-04,
|
||||
6.297478e+00,
|
||||
1.571376e-02,
|
||||
-3.782188e-02,
|
||||
@@ -86,9 +93,9 @@
|
||||
0.000000e+00
|
||||
],
|
||||
[
|
||||
-6.379657e-08,
|
||||
3.363858e-07,
|
||||
-3.132406e-07,
|
||||
-6.379685e-08,
|
||||
3.363860e-07,
|
||||
-3.132405e-07,
|
||||
0.000000e+00,
|
||||
0.000000e+00,
|
||||
0.000000e+00
|
||||
@@ -97,6 +104,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 2.601290e-06,
|
||||
"coeffs": [
|
||||
[
|
||||
7.516580e-01,
|
||||
@@ -104,7 +112,7 @@
|
||||
5.495585e+00,
|
||||
-1.397685e-01,
|
||||
-1.452278e-02,
|
||||
2.716283e-02
|
||||
2.716284e-02
|
||||
],
|
||||
[
|
||||
-2.940696e-02,
|
||||
@@ -116,7 +124,7 @@
|
||||
],
|
||||
[
|
||||
2.578208e-04,
|
||||
6.736921e-09,
|
||||
6.736922e-09,
|
||||
1.829754e-07,
|
||||
-1.775316e-07,
|
||||
0.000000e+00,
|
||||
@@ -124,8 +132,8 @@
|
||||
],
|
||||
[
|
||||
-2.058397e-06,
|
||||
-3.348864e-10,
|
||||
5.467785e-10,
|
||||
-3.348859e-10,
|
||||
5.467784e-10,
|
||||
0.000000e+00,
|
||||
0.000000e+00,
|
||||
0.000000e+00
|
||||
@@ -134,6 +142,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": 2.055943e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
5.530273e+00,
|
||||
@@ -17,6 +18,7 @@
|
||||
"Tmin": 2.201500e+02,
|
||||
"TminPsat": 3.731500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 9.828601e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
4.602765e-01,
|
||||
@@ -30,7 +32,7 @@
|
||||
1.113132e-04,
|
||||
-2.530961e-03,
|
||||
1.246007e-05,
|
||||
-4.776917e-05,
|
||||
-4.776916e-05,
|
||||
9.814404e-05,
|
||||
0.000000e+00
|
||||
],
|
||||
@@ -54,6 +56,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 1.831041e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
1.050043e+03,
|
||||
@@ -92,6 +95,7 @@
|
||||
},
|
||||
"description": "Glykosol N, Ethylene Glycol",
|
||||
"mass2input": {
|
||||
"NRMS": 4.393536e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
3.237641e-01,
|
||||
@@ -105,16 +109,19 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "GKN",
|
||||
"reference": "PKS2005,Skovrup2013",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 2.265725e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
3.631385e+03,
|
||||
@@ -141,7 +148,7 @@
|
||||
0.000000e+00
|
||||
],
|
||||
[
|
||||
-4.605376e-08,
|
||||
-4.605369e-08,
|
||||
6.201753e-07,
|
||||
-2.374986e-05,
|
||||
0.000000e+00,
|
||||
@@ -152,6 +159,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 4.263132e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
-8.317626e+00,
|
||||
@@ -189,6 +197,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 2.631500e+02,
|
||||
"TminPsat": 2.931500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 1.035549e-13,
|
||||
"coeffs": [
|
||||
[
|
||||
6.080000e-01
|
||||
@@ -16,15 +18,16 @@
|
||||
1.000000e-03
|
||||
],
|
||||
[
|
||||
-1.200140e-19
|
||||
8.401508e-20
|
||||
],
|
||||
[
|
||||
9.423242e-21
|
||||
5.341602e-20
|
||||
]
|
||||
],
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 2.590246e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
1.151987e+03
|
||||
@@ -43,16 +46,19 @@
|
||||
},
|
||||
"description": "Dynalene HC10",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "HC10",
|
||||
"reference": "Dynalene2014",
|
||||
"saturation_pressure": {
|
||||
"NRMS": 1.067737e-02,
|
||||
"coeffs": [
|
||||
[
|
||||
1.144459e+01
|
||||
@@ -70,6 +76,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 5.065798e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
3.528715e+03
|
||||
@@ -87,14 +94,16 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 4.665580e-03,
|
||||
"coeffs": [
|
||||
1.309926e+03,
|
||||
-5.112355e+00,
|
||||
1.309927e+03,
|
||||
-5.112309e+00,
|
||||
1.088090e+01
|
||||
],
|
||||
"type": "exponential"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 2.531500e+02,
|
||||
"TminPsat": 2.931500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 3.403973e-14,
|
||||
"coeffs": [
|
||||
[
|
||||
5.980000e-01
|
||||
@@ -19,12 +21,13 @@
|
||||
0.000000e+00
|
||||
],
|
||||
[
|
||||
-6.255525e-20
|
||||
0.000000e+00
|
||||
]
|
||||
],
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 2.323769e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
1.198285e+03
|
||||
@@ -43,16 +46,19 @@
|
||||
},
|
||||
"description": "Dynalene HC20",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "HC20",
|
||||
"reference": "Dynalene2014",
|
||||
"saturation_pressure": {
|
||||
"NRMS": 9.364035e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
1.101947e+01
|
||||
@@ -70,6 +76,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 5.054668e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
3.388620e+03
|
||||
@@ -81,20 +88,22 @@
|
||||
-7.601095e-06
|
||||
],
|
||||
[
|
||||
1.876814e-09
|
||||
1.876813e-09
|
||||
]
|
||||
],
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 3.930689e-03,
|
||||
"coeffs": [
|
||||
1.457363e+03,
|
||||
8.328728e+00,
|
||||
8.328726e+00,
|
||||
1.098672e+01
|
||||
],
|
||||
"type": "exponential"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 2.431500e+02,
|
||||
"TminPsat": 2.931500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 4.951398e-13,
|
||||
"coeffs": [
|
||||
[
|
||||
5.890000e-01
|
||||
@@ -16,15 +18,16 @@
|
||||
1.000000e-03
|
||||
],
|
||||
[
|
||||
1.057732e-19
|
||||
0.000000e+00
|
||||
],
|
||||
[
|
||||
5.940455e-20
|
||||
1.149461e-19
|
||||
]
|
||||
],
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 2.097756e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
1.239436e+03
|
||||
@@ -43,16 +46,19 @@
|
||||
},
|
||||
"description": "Dynalene HC30",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "HC30",
|
||||
"reference": "Dynalene2014",
|
||||
"saturation_pressure": {
|
||||
"NRMS": 9.689493e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
1.073982e+01
|
||||
@@ -70,6 +76,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 5.244001e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
3.238461e+03
|
||||
@@ -87,14 +94,16 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 4.063771e-03,
|
||||
"coeffs": [
|
||||
1.479131e+03,
|
||||
4.336367e+00,
|
||||
1.479132e+03,
|
||||
4.336454e+00,
|
||||
1.094097e+01
|
||||
],
|
||||
"type": "exponential"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 2.331500e+02,
|
||||
"TminPsat": 2.931500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 1.530753e-13,
|
||||
"coeffs": [
|
||||
[
|
||||
5.690000e-01
|
||||
@@ -16,15 +18,16 @@
|
||||
1.000000e-03
|
||||
],
|
||||
[
|
||||
-1.572305e-20
|
||||
-1.597451e-19
|
||||
],
|
||||
[
|
||||
5.982170e-21
|
||||
-1.323489e-20
|
||||
]
|
||||
],
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 2.067735e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
1.281449e+03
|
||||
@@ -43,16 +46,19 @@
|
||||
},
|
||||
"description": "Dynalene HC40",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "HC40",
|
||||
"reference": "Dynalene2014",
|
||||
"saturation_pressure": {
|
||||
"NRMS": 9.421324e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
1.023251e+01
|
||||
@@ -70,6 +76,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 5.239940e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
3.071230e+03
|
||||
@@ -87,6 +94,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 1.067173e-02,
|
||||
"coeffs": [
|
||||
6.779431e+02,
|
||||
-1.009829e+02,
|
||||
@@ -95,6 +103,7 @@
|
||||
"type": "exponential"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 2.231500e+02,
|
||||
"TminPsat": 2.931500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 2.738776e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
5.650230e-01
|
||||
@@ -25,6 +27,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 1.945182e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
1.306294e+03
|
||||
@@ -43,16 +46,19 @@
|
||||
},
|
||||
"description": "Dynalene HC50",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "HC50",
|
||||
"reference": "Dynalene2014",
|
||||
"saturation_pressure": {
|
||||
"NRMS": 1.283945e-02,
|
||||
"coeffs": [
|
||||
[
|
||||
1.009944e+01
|
||||
@@ -70,6 +76,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 5.439157e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
2.818936e+03
|
||||
@@ -87,6 +94,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 1.171334e-02,
|
||||
"coeffs": [
|
||||
5.011090e+02,
|
||||
-1.320362e+02,
|
||||
@@ -95,6 +103,7 @@
|
||||
"type": "exponential"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 1.931500e+02,
|
||||
"TminPsat": 3.731500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
2.031860e-01
|
||||
@@ -19,6 +21,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
1.071780e+03
|
||||
@@ -31,20 +34,24 @@
|
||||
},
|
||||
"description": "Hydrocarbon blend - Dynalene MV",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "HCB",
|
||||
"reference": "Melinder2010",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
7.613930e+02
|
||||
@@ -56,6 +63,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
7.168190e+00
|
||||
@@ -70,6 +78,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 1.931500e+02,
|
||||
"TminPsat": 3.731500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
1.537160e-01
|
||||
@@ -19,6 +21,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
9.717250e+02
|
||||
@@ -31,20 +34,24 @@
|
||||
},
|
||||
"description": "Hydrocarbon mixture - Gilotherm D12",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "HCM",
|
||||
"reference": "Melinder2010",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
8.440230e+02
|
||||
@@ -56,6 +63,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
1.832370e+01
|
||||
@@ -70,6 +78,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 1.931500e+02,
|
||||
"TminPsat": 3.731500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
9.929580e-01
|
||||
@@ -19,6 +21,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
1.822370e+03
|
||||
@@ -31,20 +34,24 @@
|
||||
},
|
||||
"description": "Hydrofluoroether - HFE-7100 3M Novec",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "HFE",
|
||||
"reference": "Melinder2010",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
8.718340e+02
|
||||
@@ -56,6 +63,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
-4.228780e+00
|
||||
@@ -70,6 +78,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 1.928200e+02,
|
||||
"TminPsat": 3.374200e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 1.045884e-08,
|
||||
"coeffs": [
|
||||
[
|
||||
7.528370e-02
|
||||
@@ -16,15 +18,16 @@
|
||||
-1.954800e-04
|
||||
],
|
||||
[
|
||||
-2.465230e-14
|
||||
-2.465231e-14
|
||||
],
|
||||
[
|
||||
6.920682e-16
|
||||
6.920590e-16
|
||||
]
|
||||
],
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 4.017929e-14,
|
||||
"coeffs": [
|
||||
[
|
||||
1.556520e+03
|
||||
@@ -33,30 +36,34 @@
|
||||
-2.269000e+00
|
||||
],
|
||||
[
|
||||
5.221518e-16
|
||||
4.215243e-16
|
||||
],
|
||||
[
|
||||
2.402592e-16
|
||||
-1.533062e-16
|
||||
]
|
||||
],
|
||||
"type": "polynomial"
|
||||
},
|
||||
"description": "HFE-7100, Hydrofluoroether",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "HFE2",
|
||||
"reference": "3M2007,Skovrup2013",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 8.778542e-14,
|
||||
"coeffs": [
|
||||
[
|
||||
1.116940e+03
|
||||
@@ -65,15 +72,16 @@
|
||||
2.000000e+00
|
||||
],
|
||||
[
|
||||
-6.642229e-16
|
||||
-4.175534e-16
|
||||
],
|
||||
[
|
||||
-3.339343e-16
|
||||
2.160815e-16
|
||||
]
|
||||
],
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 7.870470e-03,
|
||||
"coeffs": [
|
||||
4.475374e+02,
|
||||
-9.321610e+01,
|
||||
@@ -82,6 +90,7 @@
|
||||
"type": "exponential"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 2.531500e+02,
|
||||
"TminPsat": 3.231500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 1.087061e-02,
|
||||
"coeffs": [
|
||||
[
|
||||
5.181167e-01
|
||||
@@ -25,6 +27,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
1.202200e+03
|
||||
@@ -37,16 +40,19 @@
|
||||
},
|
||||
"description": "HYCOOL 20, Potassium formate",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "HY20",
|
||||
"reference": "Hydro2000",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
-5.000000e+03,
|
||||
6.000000e+01,
|
||||
@@ -55,6 +61,7 @@
|
||||
"type": "exponential"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
2.955000e+03
|
||||
@@ -66,6 +73,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 6.774619e-03,
|
||||
"coeffs": [
|
||||
6.428043e+02,
|
||||
-1.172885e+02,
|
||||
@@ -74,6 +82,7 @@
|
||||
"type": "exponential"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 2.431500e+02,
|
||||
"TminPsat": 3.231500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 8.351144e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
4.986055e-01
|
||||
@@ -25,6 +27,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
1.257500e+03
|
||||
@@ -37,16 +40,19 @@
|
||||
},
|
||||
"description": "HyCool 30, Potassium formate",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "HY30",
|
||||
"reference": "Hydro2000",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
-5.000000e+03,
|
||||
6.000000e+01,
|
||||
@@ -55,6 +61,7 @@
|
||||
"type": "exponential"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
2.783000e+03
|
||||
@@ -66,6 +73,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 2.084667e-03,
|
||||
"coeffs": [
|
||||
3.498823e+02,
|
||||
-1.582110e+02,
|
||||
@@ -74,6 +82,7 @@
|
||||
"type": "exponential"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 2.331500e+02,
|
||||
"TminPsat": 2.931500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
4.826000e-01
|
||||
@@ -19,6 +21,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
1.304500e+03
|
||||
@@ -31,16 +34,19 @@
|
||||
},
|
||||
"description": "HyCool 40, Potassium formate",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "HY40",
|
||||
"reference": "Hydro2000",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
-5.000000e+03,
|
||||
6.000000e+01,
|
||||
@@ -49,6 +55,7 @@
|
||||
"type": "exponential"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
2.646000e+03
|
||||
@@ -60,6 +67,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 4.733901e-06,
|
||||
"coeffs": [
|
||||
4.981135e+02,
|
||||
-1.429021e+02,
|
||||
@@ -68,6 +76,7 @@
|
||||
"type": "exponential"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 2.281500e+02,
|
||||
"TminPsat": 2.931500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
4.750000e-01
|
||||
@@ -19,6 +21,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
1.328700e+03
|
||||
@@ -31,16 +34,19 @@
|
||||
},
|
||||
"description": "HyCool 45, Potassium formate",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "HY45",
|
||||
"reference": "Hydro2000",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
-5.000000e+03,
|
||||
6.000000e+01,
|
||||
@@ -49,6 +55,7 @@
|
||||
"type": "exponential"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
2.578000e+03
|
||||
@@ -60,14 +67,16 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 3.355311e-06,
|
||||
"coeffs": [
|
||||
4.790609e+02,
|
||||
-1.466029e+02,
|
||||
2.408912e+00
|
||||
4.790631e+02,
|
||||
-1.466026e+02,
|
||||
2.408922e+00
|
||||
],
|
||||
"type": "exponential"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 2.231500e+02,
|
||||
"TminPsat": 2.931500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
4.660000e-01
|
||||
@@ -19,6 +21,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
1.359000e+03
|
||||
@@ -31,16 +34,19 @@
|
||||
},
|
||||
"description": "HyCool 50, Potassium formate",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "HY50",
|
||||
"reference": "Hydro2000",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
-5.000000e+03,
|
||||
6.000000e+01,
|
||||
@@ -49,6 +55,7 @@
|
||||
"type": "exponential"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
2.498000e+03
|
||||
@@ -60,6 +67,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 1.931401e-03,
|
||||
"coeffs": [
|
||||
4.845547e+02,
|
||||
-1.520740e+02,
|
||||
@@ -68,6 +76,7 @@
|
||||
"type": "exponential"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 2.400000e+02,
|
||||
"TminPsat": 2.650000e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 1.632173e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
5.582565e-01,
|
||||
@@ -45,6 +47,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 2.317217e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
9.604950e+02,
|
||||
@@ -83,20 +86,24 @@
|
||||
},
|
||||
"description": "Ice slurry with Ethanol",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "IceEA",
|
||||
"reference": "Kauffeld2001,Skovrup2013",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 1.222248e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
8.194079e+04,
|
||||
@@ -134,6 +141,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 2.599949e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
-3.087316e+00,
|
||||
@@ -171,6 +179,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,13 +9,14 @@
|
||||
"Tmin": 2.550000e+02,
|
||||
"TminPsat": 2.700000e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 5.129255e-05,
|
||||
"coeffs": [
|
||||
[
|
||||
7.598080e-01,
|
||||
1.235272e+00,
|
||||
5.741071e-01,
|
||||
2.444444e-01,
|
||||
-8.492104e-14,
|
||||
3.411933e-13,
|
||||
6.666667e-01
|
||||
],
|
||||
[
|
||||
@@ -45,6 +47,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 1.343692e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
1.070914e+03,
|
||||
@@ -83,20 +86,24 @@
|
||||
},
|
||||
"description": "Ice slurry with NaCl",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "IceNA",
|
||||
"reference": "Kauffeld2001,Skovrup2013",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 9.150695e-07,
|
||||
"coeffs": [
|
||||
[
|
||||
7.290671e+04,
|
||||
@@ -134,6 +141,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 5.260894e-05,
|
||||
"coeffs": [
|
||||
[
|
||||
-5.111147e+00,
|
||||
@@ -171,6 +179,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 2.300000e+02,
|
||||
"TminPsat": 2.650000e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 1.054945e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
5.381718e-01,
|
||||
@@ -45,13 +47,14 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 1.083247e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
1.024418e+03,
|
||||
-1.563366e+02,
|
||||
2.333333e+01,
|
||||
-2.500000e+01,
|
||||
4.181595e-10,
|
||||
-2.286410e-08,
|
||||
1.000000e+03
|
||||
],
|
||||
[
|
||||
@@ -65,7 +68,7 @@
|
||||
[
|
||||
-2.218367e-02,
|
||||
3.259637e-02,
|
||||
-1.033896e-13,
|
||||
8.096114e-13,
|
||||
-3.174603e-02,
|
||||
0.000000e+00,
|
||||
0.000000e+00
|
||||
@@ -83,20 +86,24 @@
|
||||
},
|
||||
"description": "Ice slurry with Propylene Glycol",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "IcePG",
|
||||
"reference": "Kauffeld2001,Skovrup2013",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 9.813949e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
8.962249e+04,
|
||||
@@ -134,6 +141,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 2.131279e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
-6.356003e+00,
|
||||
@@ -171,6 +179,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
7.000000e+02,
|
||||
-6.000000e+01,
|
||||
@@ -12,6 +13,7 @@
|
||||
"Tmin": 2.730000e+02,
|
||||
"TminPsat": 2.730000e+02,
|
||||
"conductivity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
0.000000e+00,
|
||||
@@ -49,6 +51,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 5.753183e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
1.300435e+03,
|
||||
@@ -87,16 +90,19 @@
|
||||
},
|
||||
"description": "Lithium-bromide solution - aq",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "LiBr",
|
||||
"reference": "Patek2006",
|
||||
"saturation_pressure": {
|
||||
"NRMS": 2.129276e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
1.152444e+01,
|
||||
@@ -134,6 +140,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 5.463120e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
2.641343e+03,
|
||||
@@ -171,6 +178,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
0.000000e+00,
|
||||
@@ -208,6 +216,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
2.473900e+02,
|
||||
@@ -17,6 +18,7 @@
|
||||
"Tmin": 1.731500e+02,
|
||||
"TminPsat": 3.031500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
4.551000e-01,
|
||||
@@ -54,6 +56,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
9.445000e+02,
|
||||
@@ -92,20 +95,24 @@
|
||||
},
|
||||
"description": "Ammonia (NH3) - aq",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "MAM",
|
||||
"reference": "Melinder2010",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
4.233000e+03,
|
||||
@@ -143,6 +150,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
-5.982255e+00,
|
||||
@@ -180,6 +188,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,10 +1,13 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": 1.089729e-14,
|
||||
"coeffs": [
|
||||
[
|
||||
5.514485e+00,
|
||||
-1.021669e+00,
|
||||
-3.735343e+00
|
||||
5.514722e+00,
|
||||
-9.364417e-01,
|
||||
-3.946344e+00,
|
||||
-1.526370e+01,
|
||||
2.536176e+01
|
||||
]
|
||||
],
|
||||
"type": "exppolynomial"
|
||||
@@ -14,6 +17,7 @@
|
||||
"Tmin": 2.241500e+02,
|
||||
"TminPsat": 2.931500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 1.036349e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
4.403579e-01,
|
||||
@@ -47,6 +51,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 4.412285e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
9.480402e+02,
|
||||
@@ -81,20 +86,24 @@
|
||||
},
|
||||
"description": "Melinder, Ammonia",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "MAM2",
|
||||
"reference": "Melinder2010,Skovrup2013",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 5.248236e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
4.250898e+03,
|
||||
@@ -128,6 +137,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 2.844161e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
-5.709274e+00,
|
||||
@@ -161,6 +171,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
0.000000e+00,
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
2.569400e+02,
|
||||
@@ -17,6 +18,7 @@
|
||||
"Tmin": 1.731500e+02,
|
||||
"TminPsat": 3.131500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
5.580000e-01,
|
||||
@@ -54,6 +56,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
1.171000e+03,
|
||||
@@ -92,20 +95,24 @@
|
||||
},
|
||||
"description": "Calcium Chloride (CaCl2) - aq",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "MCA",
|
||||
"reference": "Melinder2010",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
3.133000e+03,
|
||||
@@ -143,6 +150,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
-6.013855e+00,
|
||||
@@ -180,6 +188,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,11 +1,14 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": 2.019931e-14,
|
||||
"coeffs": [
|
||||
[
|
||||
5.547347e+00,
|
||||
-6.216891e-01,
|
||||
-3.469707e+00,
|
||||
-1.617841e+01
|
||||
5.545838e+00,
|
||||
-6.342563e-01,
|
||||
-2.183514e+00,
|
||||
-9.175102e+00,
|
||||
-1.139350e+02,
|
||||
-5.750079e+02
|
||||
]
|
||||
],
|
||||
"type": "exppolynomial"
|
||||
@@ -15,6 +18,7 @@
|
||||
"Tmin": 2.291500e+02,
|
||||
"TminPsat": 3.031500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 2.071192e-09,
|
||||
"coeffs": [
|
||||
[
|
||||
5.353256e-01,
|
||||
@@ -52,6 +56,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 1.242959e-09,
|
||||
"coeffs": [
|
||||
[
|
||||
1.179788e+03,
|
||||
@@ -90,20 +95,24 @@
|
||||
},
|
||||
"description": "Melinder, Calcium Chloride",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "MCA2",
|
||||
"reference": "Melinder2010,Skovrup2013",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 2.659088e-10,
|
||||
"coeffs": [
|
||||
[
|
||||
3.070664e+03,
|
||||
@@ -141,6 +150,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 4.042322e-11,
|
||||
"coeffs": [
|
||||
[
|
||||
-5.575889e+00,
|
||||
@@ -178,6 +188,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
0.000000e+00,
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
2.537400e+02,
|
||||
@@ -17,6 +18,7 @@
|
||||
"Tmin": 1.731500e+02,
|
||||
"TminPsat": 3.131500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
4.067000e-01,
|
||||
@@ -54,6 +56,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
9.619000e+02,
|
||||
@@ -92,20 +95,24 @@
|
||||
},
|
||||
"description": "Ethyl Alcohol (Ethanol) - aq",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "MEA",
|
||||
"reference": "Melinder2010",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
4.204000e+03,
|
||||
@@ -143,6 +150,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
-5.433755e+00,
|
||||
@@ -180,6 +188,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": 1.149018e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
5.512301e+00,
|
||||
@@ -17,6 +18,7 @@
|
||||
"Tmin": 2.291500e+02,
|
||||
"TminPsat": 2.931500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 1.080590e-09,
|
||||
"coeffs": [
|
||||
[
|
||||
3.659957e-01,
|
||||
@@ -35,7 +37,7 @@
|
||||
0.000000e+00
|
||||
],
|
||||
[
|
||||
-4.279157e-09,
|
||||
-4.279154e-09,
|
||||
-1.966452e-06,
|
||||
1.310795e-05,
|
||||
-1.438998e-05,
|
||||
@@ -54,6 +56,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 3.066165e-10,
|
||||
"coeffs": [
|
||||
[
|
||||
9.639157e+02,
|
||||
@@ -92,20 +95,24 @@
|
||||
},
|
||||
"description": "Melinder, Ethanol",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "MEA2",
|
||||
"reference": "Melinder2010,Skovrup2013",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 2.158727e-10,
|
||||
"coeffs": [
|
||||
[
|
||||
3.996428e+03,
|
||||
@@ -132,7 +139,7 @@
|
||||
0.000000e+00
|
||||
],
|
||||
[
|
||||
3.312447e-06,
|
||||
3.312446e-06,
|
||||
2.777430e-04,
|
||||
3.365996e-04,
|
||||
0.000000e+00,
|
||||
@@ -143,6 +150,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 3.001182e-11,
|
||||
"coeffs": [
|
||||
[
|
||||
-4.268143e+00,
|
||||
@@ -180,6 +188,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
0.000000e+00,
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
2.579000e+02,
|
||||
@@ -17,6 +18,7 @@
|
||||
"Tmin": 1.731500e+02,
|
||||
"TminPsat": 3.731500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
4.720000e-01,
|
||||
@@ -54,6 +56,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
1.034000e+03,
|
||||
@@ -92,20 +95,24 @@
|
||||
},
|
||||
"description": "Ethylene Glycol - aq",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "MEG",
|
||||
"reference": "Melinder2010",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
3.737000e+03,
|
||||
@@ -143,6 +150,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
-6.437255e+00,
|
||||
@@ -180,6 +188,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": 1.658177e-05,
|
||||
"coeffs": [
|
||||
[
|
||||
5.561002e+00,
|
||||
@@ -17,6 +18,7 @@
|
||||
"Tmin": 2.291500e+02,
|
||||
"TminPsat": 3.131500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 9.615395e-10,
|
||||
"coeffs": [
|
||||
[
|
||||
4.519714e-01,
|
||||
@@ -54,6 +56,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 2.659167e-09,
|
||||
"coeffs": [
|
||||
[
|
||||
1.042886e+03,
|
||||
@@ -92,20 +95,24 @@
|
||||
},
|
||||
"description": "Melinder, Ethylene Glycol",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "MEG2",
|
||||
"reference": "Melinder2010,Skovrup2013",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 2.001058e-10,
|
||||
"coeffs": [
|
||||
[
|
||||
3.716958e+03,
|
||||
@@ -143,6 +150,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 2.633689e-11,
|
||||
"coeffs": [
|
||||
[
|
||||
-5.423845e+00,
|
||||
@@ -180,6 +188,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
0.000000e+00,
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
2.601500e+02,
|
||||
@@ -17,6 +18,7 @@
|
||||
"Tmin": 1.731500e+02,
|
||||
"TminPsat": 3.131500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
4.532000e-01,
|
||||
@@ -54,6 +56,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
1.093000e+03,
|
||||
@@ -92,20 +95,24 @@
|
||||
},
|
||||
"description": "Glycerol - aq",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "MGL",
|
||||
"reference": "Melinder2010",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
3.486000e+03,
|
||||
@@ -143,6 +150,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
-5.387755e+00,
|
||||
@@ -180,6 +188,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": 9.260566e-05,
|
||||
"coeffs": [
|
||||
[
|
||||
5.548673e+00,
|
||||
@@ -17,6 +18,7 @@
|
||||
"Tmin": 2.331500e+02,
|
||||
"TminPsat": 3.131500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 1.428983e-09,
|
||||
"coeffs": [
|
||||
[
|
||||
4.291509e-01,
|
||||
@@ -54,6 +56,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 1.908721e-09,
|
||||
"coeffs": [
|
||||
[
|
||||
1.110879e+03,
|
||||
@@ -74,7 +77,7 @@
|
||||
[
|
||||
-2.942086e-03,
|
||||
1.833694e-02,
|
||||
4.849420e-05,
|
||||
4.849419e-05,
|
||||
-2.545000e-01,
|
||||
0.000000e+00,
|
||||
0.000000e+00
|
||||
@@ -92,20 +95,24 @@
|
||||
},
|
||||
"description": "Melinder, Glycerol",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "MGL2",
|
||||
"reference": "Melinder2010,Skovrup2013",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 2.097290e-10,
|
||||
"coeffs": [
|
||||
[
|
||||
3.322537e+03,
|
||||
@@ -143,6 +150,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 1.827820e-11,
|
||||
"coeffs": [
|
||||
[
|
||||
-7.076829e+00,
|
||||
@@ -180,6 +188,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
0.000000e+00,
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
2.561100e+02,
|
||||
@@ -17,6 +18,7 @@
|
||||
"Tmin": 1.731500e+02,
|
||||
"TminPsat": 3.131500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
4.958000e-01,
|
||||
@@ -54,6 +56,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
1.138000e+03,
|
||||
@@ -92,20 +95,24 @@
|
||||
},
|
||||
"description": "Potassium Acetate (CH3CO2K) - aq",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "MKA",
|
||||
"reference": "Melinder2010",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
3.327000e+03,
|
||||
@@ -143,6 +150,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
-5.865755e+00,
|
||||
@@ -180,6 +188,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,12 +1,14 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": 3.723392e-05,
|
||||
"coeffs": [
|
||||
[
|
||||
5.544472e+00,
|
||||
-4.849410e-01,
|
||||
-5.030381e-01,
|
||||
-1.738208e+00,
|
||||
-2.306404e+00,
|
||||
1.090680e+01
|
||||
1.078158e+00,
|
||||
1.090680e+01,
|
||||
-1.160421e+02
|
||||
]
|
||||
],
|
||||
"type": "exppolynomial"
|
||||
@@ -16,6 +18,7 @@
|
||||
"Tmin": 2.291500e+02,
|
||||
"TminPsat": 3.031500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 1.482093e-09,
|
||||
"coeffs": [
|
||||
[
|
||||
4.762927e-01,
|
||||
@@ -53,6 +56,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 1.425314e-09,
|
||||
"coeffs": [
|
||||
[
|
||||
1.144474e+03,
|
||||
@@ -91,20 +95,24 @@
|
||||
},
|
||||
"description": "Melinder, Potassium Acetate",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "MKA2",
|
||||
"reference": "Melinder2010,Skovrup2013",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 2.761102e-10,
|
||||
"coeffs": [
|
||||
[
|
||||
3.287139e+03,
|
||||
@@ -142,6 +150,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 2.748132e-11,
|
||||
"coeffs": [
|
||||
[
|
||||
-5.364930e+00,
|
||||
@@ -179,6 +188,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
0.000000e+00,
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
2.628500e+02,
|
||||
@@ -17,6 +18,7 @@
|
||||
"Tmin": 1.731500e+02,
|
||||
"TminPsat": 3.131500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
5.622000e-01,
|
||||
@@ -54,6 +56,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
1.216000e+03,
|
||||
@@ -92,20 +95,24 @@
|
||||
},
|
||||
"description": "Potassium Carbonate (K2CO3) - aq",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "MKC",
|
||||
"reference": "Melinder2010",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
3.217000e+03,
|
||||
@@ -143,6 +150,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
-6.101455e+00,
|
||||
@@ -180,6 +188,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": 7.651756e-05,
|
||||
"coeffs": [
|
||||
[
|
||||
5.577778e+00,
|
||||
@@ -17,6 +18,7 @@
|
||||
"Tmin": 2.381500e+02,
|
||||
"TminPsat": 3.031500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 2.006272e-09,
|
||||
"coeffs": [
|
||||
[
|
||||
5.427225e-01,
|
||||
@@ -54,6 +56,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 6.419413e-10,
|
||||
"coeffs": [
|
||||
[
|
||||
1.192423e+03,
|
||||
@@ -92,20 +95,24 @@
|
||||
},
|
||||
"description": "Melinder, Potassium Carbonate",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "MKC2",
|
||||
"reference": "Melinder2010,Skovrup2013",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 1.824107e-10,
|
||||
"coeffs": [
|
||||
[
|
||||
3.298666e+03,
|
||||
@@ -143,6 +150,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 3.742548e-11,
|
||||
"coeffs": [
|
||||
[
|
||||
-5.818014e+00,
|
||||
@@ -180,6 +188,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
0.000000e+00,
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
2.529600e+02,
|
||||
@@ -17,6 +18,7 @@
|
||||
"Tmin": 1.731500e+02,
|
||||
"TminPsat": 3.131500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
5.253000e-01,
|
||||
@@ -54,6 +56,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
1.189000e+03,
|
||||
@@ -92,20 +95,24 @@
|
||||
},
|
||||
"description": "Potassium Formate (CHKO2) - aq",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "MKF",
|
||||
"reference": "Melinder2010",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
3.144000e+03,
|
||||
@@ -143,6 +150,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
-6.098955e+00,
|
||||
@@ -180,6 +188,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
2.498600e+02,
|
||||
@@ -17,6 +18,7 @@
|
||||
"Tmin": 1.731500e+02,
|
||||
"TminPsat": 3.131500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
5.362000e-01,
|
||||
@@ -54,6 +56,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
1.088000e+03,
|
||||
@@ -92,20 +95,24 @@
|
||||
},
|
||||
"description": "Lithium Chloride (LiCl) - aq",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "MLI",
|
||||
"reference": "Melinder2010",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
3.383000e+03,
|
||||
@@ -143,6 +150,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
-5.894755e+00,
|
||||
@@ -180,6 +188,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
2.468600e+02,
|
||||
@@ -17,6 +18,7 @@
|
||||
"Tmin": 1.731500e+02,
|
||||
"TminPsat": 3.131500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
4.175000e-01,
|
||||
@@ -54,6 +56,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
9.581000e+02,
|
||||
@@ -92,20 +95,24 @@
|
||||
},
|
||||
"description": "Methyl Alcohol (Methanol) - aq",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "MMA",
|
||||
"reference": "Melinder2010",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
3.887000e+03,
|
||||
@@ -143,6 +150,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
-5.754755e+00,
|
||||
@@ -180,6 +188,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": 9.356593e-06,
|
||||
"coeffs": [
|
||||
[
|
||||
5.522851e+00,
|
||||
@@ -17,6 +18,7 @@
|
||||
"Tmin": 2.231500e+02,
|
||||
"TminPsat": 2.931500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 1.306064e-09,
|
||||
"coeffs": [
|
||||
[
|
||||
4.159515e-01,
|
||||
@@ -54,6 +56,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 4.326123e-10,
|
||||
"coeffs": [
|
||||
[
|
||||
9.683060e+02,
|
||||
@@ -92,20 +95,24 @@
|
||||
},
|
||||
"description": "Melinder, Methanol",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "MMA2",
|
||||
"reference": "Melinder2010,Skovrup2013",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 2.554682e-10,
|
||||
"coeffs": [
|
||||
[
|
||||
3.898713e+03,
|
||||
@@ -143,6 +150,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 3.404978e-11,
|
||||
"coeffs": [
|
||||
[
|
||||
-4.979901e+00,
|
||||
@@ -180,6 +188,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
0.000000e+00,
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
2.580300e+02,
|
||||
@@ -17,6 +18,7 @@
|
||||
"Tmin": 1.731500e+02,
|
||||
"TminPsat": 3.131500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
5.461000e-01,
|
||||
@@ -54,6 +56,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
1.124000e+03,
|
||||
@@ -92,20 +95,24 @@
|
||||
},
|
||||
"description": "MgCl2 - aq",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "MMG",
|
||||
"reference": "Melinder2010",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
3.365000e+03,
|
||||
@@ -143,6 +150,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
-5.950455e+00,
|
||||
@@ -180,6 +188,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,11 +1,14 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": 1.558033e-14,
|
||||
"coeffs": [
|
||||
[
|
||||
5.577597e+00,
|
||||
-5.340326e-01,
|
||||
-2.462004e+00,
|
||||
-3.263464e+00
|
||||
5.577747e+00,
|
||||
-5.255280e-01,
|
||||
-2.594460e+00,
|
||||
-7.416437e+00,
|
||||
1.212678e+01,
|
||||
3.245001e+02
|
||||
]
|
||||
],
|
||||
"type": "exppolynomial"
|
||||
@@ -15,6 +18,7 @@
|
||||
"Tmin": 2.431500e+02,
|
||||
"TminPsat": 3.031500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 1.812120e-09,
|
||||
"coeffs": [
|
||||
[
|
||||
5.393056e-01,
|
||||
@@ -41,9 +45,9 @@
|
||||
0.000000e+00
|
||||
],
|
||||
[
|
||||
-2.466452e-14,
|
||||
1.651323e-13,
|
||||
1.210943e-12,
|
||||
-2.665579e-14,
|
||||
1.726647e-13,
|
||||
1.346144e-12,
|
||||
0.000000e+00,
|
||||
0.000000e+00,
|
||||
0.000000e+00
|
||||
@@ -52,6 +56,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 1.292122e-09,
|
||||
"coeffs": [
|
||||
[
|
||||
1.089261e+03,
|
||||
@@ -72,15 +77,15 @@
|
||||
[
|
||||
-3.805784e-03,
|
||||
1.415281e-02,
|
||||
3.352158e-02,
|
||||
3.352159e-02,
|
||||
6.480992e-01,
|
||||
0.000000e+00,
|
||||
0.000000e+00
|
||||
],
|
||||
[
|
||||
-4.639233e-12,
|
||||
-1.988772e-10,
|
||||
7.022887e-10,
|
||||
-6.316836e-12,
|
||||
-1.916078e-10,
|
||||
8.193350e-10,
|
||||
0.000000e+00,
|
||||
0.000000e+00,
|
||||
0.000000e+00
|
||||
@@ -90,20 +95,24 @@
|
||||
},
|
||||
"description": "Melinder, Magnesium Chloride",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "MMG2",
|
||||
"reference": "Melinder2010,Skovrup2013",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 2.243684e-10,
|
||||
"coeffs": [
|
||||
[
|
||||
3.554767e+03,
|
||||
@@ -122,7 +131,7 @@
|
||||
0.000000e+00
|
||||
],
|
||||
[
|
||||
-4.261263e-04,
|
||||
-4.261259e-04,
|
||||
-1.398411e-01,
|
||||
2.490148e+00,
|
||||
-9.527999e+00,
|
||||
@@ -130,9 +139,9 @@
|
||||
0.000000e+00
|
||||
],
|
||||
[
|
||||
1.081224e-11,
|
||||
-3.754571e-10,
|
||||
1.830871e-09,
|
||||
-1.085443e-11,
|
||||
-2.917161e-10,
|
||||
3.102189e-09,
|
||||
0.000000e+00,
|
||||
0.000000e+00,
|
||||
0.000000e+00
|
||||
@@ -141,18 +150,19 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 4.892867e-11,
|
||||
"coeffs": [
|
||||
[
|
||||
-5.855497e+00,
|
||||
5.414954e+00,
|
||||
1.697481e+01,
|
||||
-1.465946e+02,
|
||||
-7.674162e+02,
|
||||
-7.674163e+02,
|
||||
1.484000e+04
|
||||
],
|
||||
[
|
||||
-3.772996e-02,
|
||||
-4.688719e-03,
|
||||
-4.688718e-03,
|
||||
3.611074e-01,
|
||||
-1.303658e+00,
|
||||
-1.421000e+01,
|
||||
@@ -167,9 +177,9 @@
|
||||
0.000000e+00
|
||||
],
|
||||
[
|
||||
4.885285e-14,
|
||||
-3.489433e-13,
|
||||
-1.347446e-12,
|
||||
-1.264223e-14,
|
||||
-1.340328e-13,
|
||||
3.177757e-12,
|
||||
0.000000e+00,
|
||||
0.000000e+00,
|
||||
0.000000e+00
|
||||
@@ -178,6 +188,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
0.000000e+00,
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
2.637670e+02,
|
||||
@@ -17,6 +18,7 @@
|
||||
"Tmin": 1.731500e+02,
|
||||
"TminPsat": 3.131500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
5.736000e-01,
|
||||
@@ -54,6 +56,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
1.099000e+03,
|
||||
@@ -92,20 +95,24 @@
|
||||
},
|
||||
"description": "Sodium Chloride (NaCl) - aq",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "MNA",
|
||||
"reference": "Melinder2010",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
3.593000e+03,
|
||||
@@ -143,6 +150,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
-6.470855e+00,
|
||||
@@ -180,6 +188,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,46 +1,53 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": 2.112111e-14,
|
||||
"coeffs": [
|
||||
9.344327e+05,
|
||||
6.000000e+04,
|
||||
1.000000e+01
|
||||
[
|
||||
5.581298e+00,
|
||||
-3.093872e-01,
|
||||
-7.860622e-01,
|
||||
-2.439942e+00,
|
||||
-1.099997e+00,
|
||||
-2.256166e+00
|
||||
]
|
||||
],
|
||||
"type": "exponential"
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"Tbase": 2.781500e+02,
|
||||
"Tmax": 3.031500e+02,
|
||||
"Tmin": 2.531500e+02,
|
||||
"TminPsat": 3.031500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 2.852392e-09,
|
||||
"coeffs": [
|
||||
[
|
||||
5.626726e-01,
|
||||
-7.677242e-02,
|
||||
-8.095244e-02,
|
||||
-3.147002e-01,
|
||||
-1.558002e-06,
|
||||
2.876556e-06
|
||||
-1.558010e-06,
|
||||
2.876375e-06
|
||||
],
|
||||
[
|
||||
1.714960e-03,
|
||||
-1.788022e-03,
|
||||
-4.240990e-04,
|
||||
-2.354598e-08,
|
||||
-3.509706e-08,
|
||||
-2.354569e-08,
|
||||
-3.509836e-08,
|
||||
0.000000e+00
|
||||
],
|
||||
[
|
||||
-2.938005e-06,
|
||||
3.243999e-05,
|
||||
-1.191084e-10,
|
||||
1.043738e-09,
|
||||
-1.191099e-10,
|
||||
1.043735e-09,
|
||||
0.000000e+00,
|
||||
0.000000e+00
|
||||
],
|
||||
[
|
||||
-2.818512e-14,
|
||||
-3.558079e-13,
|
||||
3.544929e-12,
|
||||
-2.817761e-14,
|
||||
-3.557780e-13,
|
||||
3.544934e-12,
|
||||
0.000000e+00,
|
||||
0.000000e+00,
|
||||
0.000000e+00
|
||||
@@ -49,35 +56,36 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 1.319714e-09,
|
||||
"coeffs": [
|
||||
[
|
||||
1.089533e+03,
|
||||
6.993472e+02,
|
||||
1.185142e+02,
|
||||
6.133000e+03,
|
||||
-9.315349e-04,
|
||||
2.244398e-02
|
||||
-9.315341e-04,
|
||||
2.244638e-02
|
||||
],
|
||||
[
|
||||
-3.356935e-01,
|
||||
-1.701107e+00,
|
||||
3.117996e+00,
|
||||
-7.831144e-06,
|
||||
1.962618e-04,
|
||||
-7.834512e-06,
|
||||
1.962753e-04,
|
||||
0.000000e+00
|
||||
],
|
||||
[
|
||||
-1.505988e-03,
|
||||
5.737000e-03,
|
||||
1.837337e-08,
|
||||
1.511629e-07,
|
||||
1.838791e-08,
|
||||
1.511972e-07,
|
||||
0.000000e+00,
|
||||
0.000000e+00
|
||||
],
|
||||
[
|
||||
1.354306e-12,
|
||||
4.125951e-11,
|
||||
2.079022e-09,
|
||||
1.193323e-12,
|
||||
4.004153e-11,
|
||||
2.079031e-09,
|
||||
0.000000e+00,
|
||||
0.000000e+00,
|
||||
0.000000e+00
|
||||
@@ -87,49 +95,53 @@
|
||||
},
|
||||
"description": "Melinder, Sodium Chloride",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "MNA2",
|
||||
"reference": "Melinder2010,Skovrup2013",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 3.020675e-10,
|
||||
"coeffs": [
|
||||
[
|
||||
3.640729e+03,
|
||||
-3.565598e+03,
|
||||
9.114668e+03,
|
||||
-1.959000e+04,
|
||||
2.165664e-03,
|
||||
2.840276e-02
|
||||
2.164677e-03,
|
||||
2.839323e-02
|
||||
],
|
||||
[
|
||||
1.818816e+00,
|
||||
1.021230e+01,
|
||||
-1.458000e+02,
|
||||
3.283456e-05,
|
||||
-1.828503e-04,
|
||||
3.284978e-05,
|
||||
-1.828161e-04,
|
||||
0.000000e+00
|
||||
],
|
||||
[
|
||||
9.722705e-04,
|
||||
-1.467000e-01,
|
||||
1.425267e-07,
|
||||
-1.285208e-06,
|
||||
1.425451e-07,
|
||||
-1.285177e-06,
|
||||
0.000000e+00,
|
||||
0.000000e+00
|
||||
],
|
||||
[
|
||||
2.554823e-11,
|
||||
3.008778e-10,
|
||||
-5.254276e-09,
|
||||
2.520073e-11,
|
||||
3.047689e-10,
|
||||
-5.254113e-09,
|
||||
0.000000e+00,
|
||||
0.000000e+00,
|
||||
0.000000e+00
|
||||
@@ -138,35 +150,36 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 7.785936e-11,
|
||||
"coeffs": [
|
||||
[
|
||||
-4.008082e+00,
|
||||
2.197643e+00,
|
||||
5.396360e+00,
|
||||
-2.524000e+00,
|
||||
-1.278584e-06,
|
||||
1.504825e-05
|
||||
-1.278142e-06,
|
||||
1.505087e-05
|
||||
],
|
||||
[
|
||||
-2.943797e-02,
|
||||
-3.055149e-03,
|
||||
-9.974000e-02,
|
||||
-1.293123e-08,
|
||||
1.945217e-07,
|
||||
-1.293707e-08,
|
||||
1.945606e-07,
|
||||
0.000000e+00
|
||||
],
|
||||
[
|
||||
2.359266e-04,
|
||||
4.419000e-04,
|
||||
-4.047657e-11,
|
||||
7.119033e-10,
|
||||
-4.042902e-11,
|
||||
7.120170e-10,
|
||||
0.000000e+00,
|
||||
0.000000e+00
|
||||
],
|
||||
[
|
||||
-1.972272e-14,
|
||||
-3.352522e-14,
|
||||
2.031765e-12,
|
||||
-1.965225e-14,
|
||||
-3.397604e-14,
|
||||
2.031777e-12,
|
||||
0.000000e+00,
|
||||
0.000000e+00,
|
||||
0.000000e+00
|
||||
@@ -175,6 +188,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
0.000000e+00,
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
2.599000e+02,
|
||||
@@ -17,6 +18,7 @@
|
||||
"Tmin": 1.731500e+02,
|
||||
"TminPsat": 3.731500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
4.513000e-01,
|
||||
@@ -54,6 +56,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
1.018000e+03,
|
||||
@@ -92,20 +95,24 @@
|
||||
},
|
||||
"description": "Propylene Glycol - aq",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "MPG",
|
||||
"reference": "Melinder2010",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
3.882000e+03,
|
||||
@@ -143,6 +150,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
-6.224055e+00,
|
||||
@@ -180,6 +188,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": 3.588184e-05,
|
||||
"coeffs": [
|
||||
[
|
||||
5.544413e+00,
|
||||
@@ -17,6 +18,7 @@
|
||||
"Tmin": 2.281500e+02,
|
||||
"TminPsat": 3.131500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 1.218595e-09,
|
||||
"coeffs": [
|
||||
[
|
||||
4.017953e-01,
|
||||
@@ -54,6 +56,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 4.231883e-09,
|
||||
"coeffs": [
|
||||
[
|
||||
1.039228e+03,
|
||||
@@ -92,20 +95,24 @@
|
||||
},
|
||||
"description": "Melinder, Propylene Glycol",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "MPG2",
|
||||
"reference": "Melinder2010,Skovrup2013",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 3.304827e-10,
|
||||
"coeffs": [
|
||||
[
|
||||
3.800663e+03,
|
||||
@@ -143,6 +150,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 1.673875e-11,
|
||||
"coeffs": [
|
||||
[
|
||||
-6.821849e+00,
|
||||
@@ -180,6 +188,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
0.000000e+00,
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 2.741500e+02,
|
||||
"TminPsat": 3.731500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 5.690905e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
6.411327e-01
|
||||
@@ -25,6 +27,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 1.558922e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
9.879064e+02
|
||||
@@ -43,20 +46,24 @@
|
||||
},
|
||||
"description": "NBS, Water",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "NBS",
|
||||
"reference": "Schmidt1979,Skovrup2013",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 4.062204e-02,
|
||||
"coeffs": [
|
||||
[
|
||||
4.179527e+03
|
||||
@@ -74,6 +81,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 1.238305e-03,
|
||||
"coeffs": [
|
||||
5.184886e+02,
|
||||
-1.478012e+02,
|
||||
@@ -82,6 +90,7 @@
|
||||
"type": "exponential"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 5.731500e+02,
|
||||
"TminPsat": 8.731500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
4.430000e-01
|
||||
@@ -19,6 +21,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
2.090000e+03
|
||||
@@ -31,20 +34,24 @@
|
||||
},
|
||||
"description": "Nitrate salt, 0.6 NaNO3 and 0.4 KNO3",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "NaK",
|
||||
"reference": "Zavoico2001",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
1.443000e+03
|
||||
@@ -56,6 +63,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
2.271400e-02
|
||||
@@ -73,6 +81,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 2.331500e+02,
|
||||
"TminPsat": 4.531500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 1.796592e-02,
|
||||
"coeffs": [
|
||||
[
|
||||
1.438018e-01
|
||||
@@ -25,6 +27,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 1.401113e-13,
|
||||
"coeffs": [
|
||||
[
|
||||
7.423000e+02
|
||||
@@ -33,30 +36,34 @@
|
||||
-7.100000e-01
|
||||
],
|
||||
[
|
||||
-1.110223e-16
|
||||
0.000000e+00
|
||||
],
|
||||
[
|
||||
-1.056114e-17
|
||||
6.928052e-17
|
||||
]
|
||||
],
|
||||
"type": "polynomial"
|
||||
},
|
||||
"description": "Paracryol, Aliphatic Hydrocarbon",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "PCL",
|
||||
"reference": "Sulzer1999,Skovrup2013",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 2.922756e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
2.190680e+03
|
||||
@@ -74,6 +81,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 7.385037e-03,
|
||||
"coeffs": [
|
||||
7.976255e+02,
|
||||
-9.239176e+01,
|
||||
@@ -82,6 +90,7 @@
|
||||
"type": "exponential"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 1.731500e+02,
|
||||
"TminPsat": 3.581500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 1.108834e-02,
|
||||
"coeffs": [
|
||||
[
|
||||
1.366907e-01
|
||||
@@ -25,6 +27,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 8.067142e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
7.876979e+02
|
||||
@@ -43,16 +46,19 @@
|
||||
},
|
||||
"description": "Paratherm CR",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "PCR",
|
||||
"reference": "Paratherm2013",
|
||||
"saturation_pressure": {
|
||||
"NRMS": 5.683661e-03,
|
||||
"coeffs": [
|
||||
-3.500387e+02,
|
||||
-1.263655e+00,
|
||||
@@ -61,6 +67,7 @@
|
||||
"type": "logexponential"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 2.436262e-02,
|
||||
"coeffs": [
|
||||
[
|
||||
2.065827e+03
|
||||
@@ -78,6 +85,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 3.164794e-02,
|
||||
"coeffs": [
|
||||
5.082283e+02,
|
||||
-9.138133e+01,
|
||||
@@ -86,6 +94,7 @@
|
||||
"type": "exponential"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 2.581500e+02,
|
||||
"TminPsat": 4.731500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 1.103062e-02,
|
||||
"coeffs": [
|
||||
[
|
||||
1.228766e-01
|
||||
@@ -25,6 +27,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 1.255966e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
7.866099e+02
|
||||
@@ -43,16 +46,19 @@
|
||||
},
|
||||
"description": "Paratherm GLT",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "PGLT",
|
||||
"reference": "Paratherm2013",
|
||||
"saturation_pressure": {
|
||||
"NRMS": 1.579751e-02,
|
||||
"coeffs": [
|
||||
[
|
||||
6.503475e+00
|
||||
@@ -70,6 +76,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 2.702553e-02,
|
||||
"coeffs": [
|
||||
[
|
||||
2.346560e+03
|
||||
@@ -87,6 +94,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 4.101552e-03,
|
||||
"coeffs": [
|
||||
9.153925e+02,
|
||||
-1.626026e+02,
|
||||
@@ -95,6 +103,7 @@
|
||||
"type": "exponential"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 2.731500e+02,
|
||||
"TminPsat": 5.591500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 1.103062e-02,
|
||||
"coeffs": [
|
||||
[
|
||||
1.208766e-01
|
||||
@@ -25,6 +27,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 1.368657e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
7.697189e+02
|
||||
@@ -43,16 +46,19 @@
|
||||
},
|
||||
"description": "Paratherm HE",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "PHE",
|
||||
"reference": "Paratherm2013",
|
||||
"saturation_pressure": {
|
||||
"NRMS": 4.287878e-02,
|
||||
"coeffs": [
|
||||
[
|
||||
3.490217e+01
|
||||
@@ -70,6 +76,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 2.403879e-02,
|
||||
"coeffs": [
|
||||
[
|
||||
2.401998e+03
|
||||
@@ -87,6 +94,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 4.974645e-03,
|
||||
"coeffs": [
|
||||
9.416352e+02,
|
||||
-1.670752e+02,
|
||||
@@ -95,6 +103,7 @@
|
||||
"type": "exponential"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 2.581500e+02,
|
||||
"TminPsat": 4.701500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 8.125849e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
1.083524e-01
|
||||
@@ -25,6 +27,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 9.737020e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
8.387187e+02
|
||||
@@ -43,16 +46,19 @@
|
||||
},
|
||||
"description": "Paratherm HR",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "PHR",
|
||||
"reference": "Paratherm2013",
|
||||
"saturation_pressure": {
|
||||
"NRMS": 8.084486e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
7.198158e+00
|
||||
@@ -70,6 +76,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 3.560268e-02,
|
||||
"coeffs": [
|
||||
[
|
||||
2.289350e+03
|
||||
@@ -87,6 +94,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 6.907493e-03,
|
||||
"coeffs": [
|
||||
7.500522e+02,
|
||||
-1.738728e+02,
|
||||
@@ -95,6 +103,7 @@
|
||||
"type": "exponential"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": 4.556250e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
5.499778e+00,
|
||||
@@ -17,6 +18,7 @@
|
||||
"Tmin": 2.111500e+02,
|
||||
"TminPsat": 3.731500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 1.122478e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
4.968935e-01,
|
||||
@@ -54,6 +56,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 1.033260e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
1.197418e+03,
|
||||
@@ -92,6 +95,7 @@
|
||||
},
|
||||
"description": "Pekasol 2000, K acetate/formate",
|
||||
"mass2input": {
|
||||
"NRMS": 3.977191e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
5.844672e-01,
|
||||
@@ -105,16 +109,19 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "PK2",
|
||||
"reference": "PKS2005,Skovrup2013",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 2.520378e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
3.012817e+03,
|
||||
@@ -152,6 +159,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 4.831142e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
-8.372931e+00,
|
||||
@@ -189,6 +197,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": 6.253059e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
5.547064e+00,
|
||||
@@ -17,6 +18,7 @@
|
||||
"Tmin": 2.241500e+02,
|
||||
"TminPsat": 3.731500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 8.392119e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
4.448091e-01,
|
||||
@@ -54,6 +56,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 2.278155e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
1.029935e+03,
|
||||
@@ -80,7 +83,7 @@
|
||||
0.000000e+00
|
||||
],
|
||||
[
|
||||
-1.966394e-08,
|
||||
-1.966392e-08,
|
||||
-4.501106e-07,
|
||||
-1.848113e-06,
|
||||
0.000000e+00,
|
||||
@@ -92,6 +95,7 @@
|
||||
},
|
||||
"description": "Pekasol L, Propylene Glycol",
|
||||
"mass2input": {
|
||||
"NRMS": 3.091476e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
3.296366e-01,
|
||||
@@ -105,23 +109,26 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "PKL",
|
||||
"reference": "PKS2005,Skovrup2013",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 2.148857e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
3.881161e+03,
|
||||
-1.689970e+03,
|
||||
-9.308359e+02,
|
||||
-1.508314e+01,
|
||||
-1.024750e+01,
|
||||
-1.024749e+01,
|
||||
2.949236e+01
|
||||
],
|
||||
[
|
||||
@@ -134,7 +141,7 @@
|
||||
],
|
||||
[
|
||||
1.270929e-03,
|
||||
3.496142e-05,
|
||||
3.496143e-05,
|
||||
-1.354376e-03,
|
||||
5.048808e-03,
|
||||
0.000000e+00,
|
||||
@@ -152,6 +159,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 3.114171e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
-1.035298e+01,
|
||||
@@ -189,6 +197,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 1.881500e+02,
|
||||
"TminPsat": 3.681500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 1.149891e-02,
|
||||
"coeffs": [
|
||||
[
|
||||
1.473157e-01
|
||||
@@ -25,6 +27,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 1.242898e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
7.232116e+02
|
||||
@@ -43,16 +46,19 @@
|
||||
},
|
||||
"description": "Paratherm LR",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "PLR",
|
||||
"reference": "Paratherm2013",
|
||||
"saturation_pressure": {
|
||||
"NRMS": 9.740276e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
7.337254e+00
|
||||
@@ -70,6 +76,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 2.400859e-02,
|
||||
"coeffs": [
|
||||
[
|
||||
2.206237e+03
|
||||
@@ -87,6 +94,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 7.127799e-03,
|
||||
"coeffs": [
|
||||
6.701186e+02,
|
||||
-1.187849e+02,
|
||||
@@ -95,6 +103,7 @@
|
||||
"type": "exponential"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 2.331500e+02,
|
||||
"TminPsat": 4.651500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 9.675488e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
1.276047e-01
|
||||
@@ -25,6 +27,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 2.738661e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
7.074414e+02
|
||||
@@ -43,16 +46,19 @@
|
||||
},
|
||||
"description": "Paratherm MR",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "PMR",
|
||||
"reference": "Paratherm2013",
|
||||
"saturation_pressure": {
|
||||
"NRMS": 1.146532e-02,
|
||||
"coeffs": [
|
||||
[
|
||||
5.963107e+00
|
||||
@@ -70,6 +76,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 3.699148e-02,
|
||||
"coeffs": [
|
||||
[
|
||||
2.612758e+03
|
||||
@@ -87,6 +94,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 4.349680e-03,
|
||||
"coeffs": [
|
||||
8.245834e+02,
|
||||
-1.416506e+02,
|
||||
@@ -95,6 +103,7 @@
|
||||
"type": "exponential"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 1.931500e+02,
|
||||
"TminPsat": 3.731500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
2.075260e-01
|
||||
@@ -19,6 +21,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
1.172350e+03
|
||||
@@ -31,20 +34,24 @@
|
||||
},
|
||||
"description": "Polydimethylsiloxan 1 - Baysilone KT3",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "PMS1",
|
||||
"reference": "Melinder2010",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
1.223690e+03
|
||||
@@ -56,6 +63,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
6.361830e+00
|
||||
@@ -70,6 +78,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 1.931500e+02,
|
||||
"TminPsat": 3.731500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
1.723050e-01
|
||||
@@ -19,6 +21,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
1.155940e+03
|
||||
@@ -31,20 +34,24 @@
|
||||
},
|
||||
"description": "Polydimethylsiloxan 2 - Syltherm XLT",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "PMS2",
|
||||
"reference": "Melinder2010",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
1.153550e+03
|
||||
@@ -56,6 +63,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
5.669260e+00
|
||||
@@ -70,6 +78,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 2.631500e+02,
|
||||
"TminPsat": 4.661500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 1.707423e-02,
|
||||
"coeffs": [
|
||||
[
|
||||
9.755338e-02
|
||||
@@ -25,6 +27,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 1.345240e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
7.962994e+02
|
||||
@@ -43,16 +46,19 @@
|
||||
},
|
||||
"description": "Paratherm NF",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "PNF",
|
||||
"reference": "Paratherm2013",
|
||||
"saturation_pressure": {
|
||||
"NRMS": 3.438614e-02,
|
||||
"coeffs": [
|
||||
[
|
||||
7.454724e+00
|
||||
@@ -70,6 +76,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 1.812371e-02,
|
||||
"coeffs": [
|
||||
[
|
||||
2.519448e+03
|
||||
@@ -87,6 +94,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 1.629948e-02,
|
||||
"coeffs": [
|
||||
[
|
||||
-1.358055e+01
|
||||
@@ -104,6 +112,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 2.631500e+02,
|
||||
"TminPsat": 5.931500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 1.613267e-02,
|
||||
"coeffs": [
|
||||
[
|
||||
9.743428e-02
|
||||
@@ -25,6 +27,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 1.277460e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
7.972963e+02
|
||||
@@ -43,20 +46,24 @@
|
||||
},
|
||||
"description": "Paratherm NF, Hydrotreated mineral oil",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "PNF2",
|
||||
"reference": "Paratherm2013,Skovrup2013",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 1.679297e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
2.531432e+03
|
||||
@@ -74,6 +81,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 1.683502e-02,
|
||||
"coeffs": [
|
||||
-2.400889e+02,
|
||||
2.880136e+00,
|
||||
@@ -82,6 +90,7 @@
|
||||
"type": "logexponential"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 1.931500e+02,
|
||||
"TminPsat": 3.731500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
2.083740e-01
|
||||
@@ -19,6 +21,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
1.102340e+03
|
||||
@@ -31,20 +34,24 @@
|
||||
},
|
||||
"description": "Synthetic alkyl benzene - Marlotherm X",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "SAB",
|
||||
"reference": "Melinder2010",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
1.360940e+03
|
||||
@@ -56,6 +63,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
5.212880e+00
|
||||
@@ -70,6 +78,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 2.731500e+02,
|
||||
"TminPsat": 3.431500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 9.200426e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
1.065831e-01
|
||||
@@ -25,6 +27,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 5.632313e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
8.924651e+02
|
||||
@@ -43,24 +46,28 @@
|
||||
},
|
||||
"description": "Therminol66",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "T66",
|
||||
"reference": "Therminol2014",
|
||||
"saturation_pressure": {
|
||||
"NRMS": 2.309993e-03,
|
||||
"coeffs": [
|
||||
-9.020703e+03,
|
||||
6.550191e+01,
|
||||
6.550192e+01,
|
||||
-2.445722e+01
|
||||
],
|
||||
"type": "exponential"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 3.462753e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
2.157819e+03
|
||||
@@ -78,6 +85,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 5.477640e-03,
|
||||
"coeffs": [
|
||||
6.538723e+02,
|
||||
-2.060943e+02,
|
||||
@@ -86,6 +94,7 @@
|
||||
"type": "exponential"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 2.631500e+02,
|
||||
"TminPsat": 2.631500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 5.915520e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
1.195537e-01
|
||||
@@ -25,6 +27,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 4.488197e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
9.293047e+02
|
||||
@@ -43,16 +46,19 @@
|
||||
},
|
||||
"description": "Therminol72",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "T72",
|
||||
"reference": "Therminol2014",
|
||||
"saturation_pressure": {
|
||||
"NRMS": 2.142828e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
1.012430e+01
|
||||
@@ -64,12 +70,13 @@
|
||||
-1.584429e-06
|
||||
],
|
||||
[
|
||||
1.406210e-11
|
||||
1.406211e-11
|
||||
]
|
||||
],
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 2.721827e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
1.999376e+03
|
||||
@@ -87,6 +94,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 4.318185e-03,
|
||||
"coeffs": [
|
||||
-2.554394e+02,
|
||||
1.904139e+00,
|
||||
@@ -95,6 +103,7 @@
|
||||
"type": "logexponential"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 1.931500e+02,
|
||||
"TminPsat": 3.731500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
1.741560e-01
|
||||
@@ -19,6 +21,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
1.071020e+03
|
||||
@@ -31,20 +34,24 @@
|
||||
},
|
||||
"description": "Citrus oil terpene - d-Limonene",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "TCO",
|
||||
"reference": "Melinder2010",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
2.237750e+02
|
||||
@@ -56,6 +63,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
-3.479710e+00
|
||||
@@ -70,6 +78,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 1.881500e+02,
|
||||
"TminPsat": 1.881500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 4.932701e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
1.014253e-01
|
||||
@@ -25,6 +27,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 1.544072e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
7.240174e+02
|
||||
@@ -43,16 +46,19 @@
|
||||
},
|
||||
"description": "TherminolD12",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "TD12",
|
||||
"reference": "Therminol2014",
|
||||
"saturation_pressure": {
|
||||
"NRMS": 9.042652e-05,
|
||||
"coeffs": [
|
||||
-3.457536e+03,
|
||||
-8.286066e+01,
|
||||
@@ -61,6 +67,7 @@
|
||||
"type": "exponential"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 5.256876e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
2.300991e+03
|
||||
@@ -78,6 +85,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 1.098351e-02,
|
||||
"coeffs": [
|
||||
5.652109e+02,
|
||||
-1.246843e+02,
|
||||
@@ -86,6 +94,7 @@
|
||||
"type": "exponential"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 2.851500e+02,
|
||||
"TminPsat": 2.851500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 4.766912e-04,
|
||||
"coeffs": [
|
||||
[
|
||||
1.130679e-01
|
||||
@@ -25,6 +27,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 3.984658e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
9.094493e+02
|
||||
@@ -43,16 +46,19 @@
|
||||
},
|
||||
"description": "TherminolVP1",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "TVP1",
|
||||
"reference": "Therminol2014",
|
||||
"saturation_pressure": {
|
||||
"NRMS": 8.471778e-05,
|
||||
"coeffs": [
|
||||
-4.313871e+03,
|
||||
-8.743140e+01,
|
||||
@@ -61,6 +67,7 @@
|
||||
"type": "exponential"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 2.473038e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
2.057847e+03
|
||||
@@ -78,6 +85,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 5.790349e-03,
|
||||
"coeffs": [
|
||||
1.073926e+03,
|
||||
-8.384143e+01,
|
||||
@@ -86,6 +94,7 @@
|
||||
"type": "exponential"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 1.931500e+02,
|
||||
"TminPsat": 2.931500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
1.500000e-01
|
||||
@@ -19,6 +21,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
9.455455e+02
|
||||
@@ -31,20 +34,24 @@
|
||||
},
|
||||
"description": "Thermogen VP 1869",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "TVP1869",
|
||||
"reference": "Hoechst1995,Skovrup2013",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": null,
|
||||
"coeffs": [
|
||||
[
|
||||
2.322218e+03
|
||||
@@ -56,6 +63,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 3.712665e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
-5.651331e+00
|
||||
@@ -73,6 +81,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 2.731500e+02,
|
||||
"TminPsat": 3.131500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 1.062583e-02,
|
||||
"coeffs": [
|
||||
[
|
||||
1.227789e-01
|
||||
@@ -25,6 +27,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 4.761243e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
7.593228e+02
|
||||
@@ -43,16 +46,19 @@
|
||||
},
|
||||
"description": "Texatherm22",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "TX22",
|
||||
"reference": "Chevron2004",
|
||||
"saturation_pressure": {
|
||||
"NRMS": 4.789468e-02,
|
||||
"coeffs": [
|
||||
[
|
||||
2.412773e+00
|
||||
@@ -70,6 +76,7 @@
|
||||
"type": "exppolynomial"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 2.029765e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
2.449690e+03
|
||||
@@ -87,6 +94,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 5.020758e-03,
|
||||
"coeffs": [
|
||||
8.829595e+02,
|
||||
-1.726102e+02,
|
||||
@@ -95,6 +103,7 @@
|
||||
"type": "exponential"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,9 +9,10 @@
|
||||
"Tmin": 2.631500e+02,
|
||||
"TminPsat": 3.131500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 2.259028e-03,
|
||||
"coeffs": [
|
||||
[
|
||||
5.274062e-01
|
||||
5.274063e-01
|
||||
],
|
||||
[
|
||||
6.909061e-04
|
||||
@@ -25,6 +27,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 4.151256e-14,
|
||||
"coeffs": [
|
||||
[
|
||||
1.102000e+03
|
||||
@@ -33,30 +36,34 @@
|
||||
-4.000000e-01
|
||||
],
|
||||
[
|
||||
4.884873e-16
|
||||
8.992915e-16
|
||||
],
|
||||
[
|
||||
4.277234e-17
|
||||
-7.654467e-17
|
||||
]
|
||||
],
|
||||
"type": "polynomial"
|
||||
},
|
||||
"description": "Tyfoxit 1.10, Potassium Acetate",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "TY10",
|
||||
"reference": "Tyfoprop1999,Skovrup2013",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 1.402758e-02,
|
||||
"coeffs": [
|
||||
[
|
||||
3.535000e+03
|
||||
@@ -65,7 +72,7 @@
|
||||
2.537698e+00
|
||||
],
|
||||
[
|
||||
-2.502122e-15
|
||||
2.058033e-15
|
||||
],
|
||||
[
|
||||
-5.555556e-04
|
||||
@@ -74,14 +81,16 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 1.208917e-02,
|
||||
"coeffs": [
|
||||
2.848799e+02,
|
||||
2.848800e+02,
|
||||
-1.786221e+02,
|
||||
6.485300e+00
|
||||
],
|
||||
"type": "exponential"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"T_freeze": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
@@ -8,6 +9,7 @@
|
||||
"Tmin": 2.531500e+02,
|
||||
"TminPsat": 3.131500e+02,
|
||||
"conductivity": {
|
||||
"NRMS": 2.131168e-14,
|
||||
"coeffs": [
|
||||
[
|
||||
4.920000e-01
|
||||
@@ -16,15 +18,16 @@
|
||||
7.000000e-04
|
||||
],
|
||||
[
|
||||
2.168404e-19
|
||||
-1.084202e-19
|
||||
],
|
||||
[
|
||||
-5.367590e-20
|
||||
4.914584e-20
|
||||
]
|
||||
],
|
||||
"type": "polynomial"
|
||||
},
|
||||
"density": {
|
||||
"NRMS": 2.292830e-14,
|
||||
"coeffs": [
|
||||
[
|
||||
1.154000e+03
|
||||
@@ -33,30 +36,34 @@
|
||||
-4.000000e-01
|
||||
],
|
||||
[
|
||||
1.054712e-15
|
||||
0.000000e+00
|
||||
],
|
||||
[
|
||||
-7.528031e-18
|
||||
3.972335e-17
|
||||
]
|
||||
],
|
||||
"type": "polynomial"
|
||||
},
|
||||
"description": "Tyfoxit 1.15, Potassium Acetate",
|
||||
"mass2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"mole2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"name": "TY15",
|
||||
"reference": "Tyfoprop1999,Skovrup2013",
|
||||
"saturation_pressure": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
"specific_heat": {
|
||||
"NRMS": 1.345873e-02,
|
||||
"coeffs": [
|
||||
[
|
||||
3.273333e+03
|
||||
@@ -74,6 +81,7 @@
|
||||
"type": "polynomial"
|
||||
},
|
||||
"viscosity": {
|
||||
"NRMS": 9.972837e-03,
|
||||
"coeffs": [
|
||||
4.217587e+02,
|
||||
-1.621283e+02,
|
||||
@@ -82,6 +90,7 @@
|
||||
"type": "exponential"
|
||||
},
|
||||
"volume2input": {
|
||||
"NRMS": null,
|
||||
"coeffs": "null",
|
||||
"type": "notdefined"
|
||||
},
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user