mirror of
https://github.com/CoolProp/CoolProp.git
synced 2026-04-01 03:00:13 -04:00
Merge branch 'master' into eigenPolynomials
Conflicts: CMakeLists.txt
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -38,3 +38,6 @@
|
||||
/build/
|
||||
/dev/hashes.json
|
||||
/include/cpversion.h
|
||||
/dev/all_incompressibles.json
|
||||
/dev/all_incompressibles_verbose.json
|
||||
/include/all_incompressibles_JSON.h
|
||||
|
||||
109
CMakeLists.txt
109
CMakeLists.txt
@@ -32,9 +32,17 @@ set (CoolProp_VERSION ${CoolProp_VERSION_MAJOR}.${CoolProp_VERSION_MINOR}.${Cool
|
||||
#######################################
|
||||
|
||||
option (COOLPROP_STATIC_LIBRARY
|
||||
"Build and install CoolProp as a STATIC library (.lib, .a) as opposed to SHARED (.dll, .so)"
|
||||
ON)
|
||||
"Build CoolProp as a static library (.lib, .a)"
|
||||
OFF)
|
||||
|
||||
option (COOLPROP_SHARED_LIBRARY
|
||||
"Build CoolProp as a shared library (.dll, .so)"
|
||||
OFF)
|
||||
|
||||
option (COOLPROP_EES_MODULE
|
||||
"Build the EES module"
|
||||
OFF)
|
||||
|
||||
option (COOLPROP_TESTING
|
||||
"Build with test flags and include main() from catch"
|
||||
OFF)
|
||||
@@ -94,18 +102,106 @@ endif()
|
||||
|
||||
### FLUIDS, MIXTURES JSON ###
|
||||
add_custom_target(generate_headers
|
||||
COMMAND ${PYTHON_EXECUTABLE} "${CMAKE_CURRENT_SOURCE_DIR}/dev/generate_headers.py")
|
||||
|
||||
COMMAND ${PYTHON_EXECUTABLE} "${CMAKE_SOURCE_DIR}/dev/generate_headers.py")
|
||||
|
||||
### COOLPROP LIB or DLL ###
|
||||
if (COOLPROP_STATIC_LIBRARY)
|
||||
add_library(${app_name} STATIC ${APP_SOURCES})
|
||||
else()
|
||||
add_dependencies (${app_name} generate_headers)
|
||||
endif()
|
||||
|
||||
##### COOLPROP SHARED LIBRARY ######
|
||||
if (COOLPROP_SHARED_LIBRARY)
|
||||
add_library(${app_name} SHARED ${APP_SOURCES})
|
||||
set_target_properties (${app_name} PROPERTIES COMPILE_FLAGS "${COMPILE_FLAGS} -DCOOLPROP_LIB")
|
||||
add_dependencies (${app_name} generate_headers)
|
||||
endif()
|
||||
add_dependencies (${app_name} generate_headers)
|
||||
|
||||
if (COOLPROP_64BIT_SHARED_LIBRARY)
|
||||
add_library(${app_name} SHARED ${APP_SOURCES})
|
||||
set_target_properties (${app_name} PROPERTIES COMPILE_FLAGS "${COMPILE_FLAGS} -DCOOLPROP_LIB")
|
||||
if (!MSVC)
|
||||
set_target_properties(${app_name} PROPERTIES COMPILE_FLAGS "-m64" LINK_FLAGS "-m64")
|
||||
endif()
|
||||
add_dependencies (${app_name} generate_headers)
|
||||
set_target_properties(${app_name} PROPERTIES PREFIX "")
|
||||
endif()
|
||||
|
||||
if (COOLPROP_32BIT_CDECL_SHARED_LIBRARY)
|
||||
add_library(${app_name} SHARED ${APP_SOURCES})
|
||||
set_target_properties (${app_name} PROPERTIES COMPILE_FLAGS "${COMPILE_FLAGS} -DCOOLPROP_LIB -DCONVENTION=__cdecl")
|
||||
if (!MSVC)
|
||||
set_target_properties(${app_name} PROPERTIES COMPILE_FLAGS "-m32" LINK_FLAGS "-m32")
|
||||
endif()
|
||||
add_dependencies (${app_name} generate_headers)
|
||||
set_target_properties(${app_name} PROPERTIES PREFIX "")
|
||||
endif()
|
||||
|
||||
if (COOLPROP_32BIT_STDCALL_SHARED_LIBRARY)
|
||||
add_library(${app_name} SHARED ${APP_SOURCES})
|
||||
set_target_properties (${app_name} PROPERTIES COMPILE_FLAGS "${COMPILE_FLAGS} -DCOOLPROP_LIB -DCONVENTION=__stdcall")
|
||||
if (!MSVC)
|
||||
set_target_properties(${app_name} PROPERTIES COMPILE_FLAGS "-m32" LINK_FLAGS "-m32")
|
||||
endif()
|
||||
add_dependencies (${app_name} generate_headers)
|
||||
set_target_properties(${app_name} PROPERTIES PREFIX "")
|
||||
endif()
|
||||
|
||||
if (COOLPROP_EES_MODULE)
|
||||
list (APPEND APP_SOURCES "wrappers/EES/main.cpp")
|
||||
include_directories(${APP_INCLUDE_DIRS})
|
||||
add_library(COOLPROP_EES SHARED ${APP_SOURCES})
|
||||
set_target_properties (COOLPROP_EES PROPERTIES COMPILE_FLAGS "${COMPILE_FLAGS} -DCOOLPROP_LIB -DCONVENTION=__cdecl")
|
||||
add_dependencies (COOLPROP_EES generate_headers)
|
||||
set_target_properties(COOLPROP_EES PROPERTIES SUFFIX ".dlf" PREFIX "")
|
||||
if (!MSVC)
|
||||
set_target_properties(COOLPROP_EES PROPERTIES COMPILE_FLAGS "-m32" LINK_FLAGS "-m32")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
if (COOLPROP_OCTAVE_MODULE)
|
||||
|
||||
# Must have SWIG and Octave
|
||||
FIND_PACKAGE(SWIG REQUIRED)
|
||||
INCLUDE(${SWIG_USE_FILE})
|
||||
FIND_PACKAGE(Octave REQUIRED)
|
||||
|
||||
# Find the required libraries
|
||||
find_library(OCTAVE_LIB octave PATHS ${OCTAVE_LINK_DIRS})
|
||||
find_library(OCTINTERP_LIB octinterp PATHS ${OCTAVE_LINK_DIRS})
|
||||
|
||||
# Set the include folders
|
||||
SET(OCTAVE_WRAP_INCLUDE_DIRS ${INCLUDE_DIR})
|
||||
foreach(ITR ${OCTAVE_INCLUDE_DIRS})
|
||||
list(APPEND OCTAVE_WRAP_INCLUDE_DIRS ${ITR})
|
||||
endforeach()
|
||||
include_directories(${OCTAVE_WRAP_INCLUDE_DIRS})
|
||||
|
||||
set(I_FILE "${CMAKE_SOURCE_DIR}/src/CoolProp.i")
|
||||
|
||||
SET_SOURCE_FILES_PROPERTIES(${I_FILE} PROPERTIES CPLUSPLUS ON)
|
||||
SWIG_ADD_MODULE(CoolProp octave ${I_FILE} ${APP_SOURCES})
|
||||
SWIG_LINK_LIBRARIES(CoolProp ${OCTAVE_LIB} ${OCTINTERP_LIB})
|
||||
|
||||
add_dependencies (CoolProp generate_headers)
|
||||
set_target_properties(CoolProp PROPERTIES SUFFIX ".oct" PREFIX "")
|
||||
|
||||
endif()
|
||||
|
||||
# NOT WORKING!
|
||||
if (COOLPROP_MATHEMATICA_MODULE)
|
||||
|
||||
# copy "C:\Program Files\Wolfram Research\Mathematica\9.0\SystemFiles\IncludeFiles\C\WolframLibrary.h" .
|
||||
# REM folder obtained from FileNameJoin[{$BaseDirectory, "SystemFiles", "LibraryResources", $SystemID}] in Mathematica
|
||||
# copy CoolProp.dll "C:\ProgramData\Mathematica\SystemFiles\LibraryResources\Windows-x86-64\"
|
||||
|
||||
list (APPEND APP_SOURCES "wrappers/Mathematica/CoolPropMathematica.cpp")
|
||||
include_directories(${APP_INCLUDE_DIRS})
|
||||
add_library(COOLProp SHARED ${APP_SOURCES})
|
||||
set_target_properties (COOLPROP_EES PROPERTIES COMPILE_FLAGS "${COMPILE_FLAGS} -DCOOLPROP_LIB -DCONVENTION=__cdecl")
|
||||
add_dependencies (COOLPROP_EES generate_headers)
|
||||
set_target_properties(COOLPROP_EES PROPERTIES SUFFIX ".dlf" PREFIX "")
|
||||
endif()
|
||||
|
||||
### COOLPROP TESTING APP ###
|
||||
if (COOLPROP_TESTING)
|
||||
@@ -122,7 +218,6 @@ if (COOLPROP_TESTING)
|
||||
endif()
|
||||
add_test(ProcedureTests testRunner.exe)
|
||||
|
||||
|
||||
# C++ Documentation Test
|
||||
add_executable (docuTest.exe "Web/examples/C++/Example.cpp")
|
||||
add_dependencies (docuTest.exe ${app_name})
|
||||
|
||||
@@ -1,6 +1,18 @@
|
||||
% This file was created with JabRef 2.9.2.
|
||||
% Encoding: ASCII
|
||||
|
||||
@ARTICLE{Abramson-HPR-2011,
|
||||
author = {Evan H. Abramson},
|
||||
title = {Melting curves of argon and methane},
|
||||
journal = {High Pressure Research},
|
||||
year = {2011},
|
||||
volume = {31},
|
||||
pages = {549-554},
|
||||
number = {4},
|
||||
owner = {Belli},
|
||||
timestamp = {2014.06.09}
|
||||
}
|
||||
|
||||
@CONFERENCE{Akasaka-DELFT-2013,
|
||||
author = {Ryo Akasaka and Yukihiro Higashi and Shigeru Koyama},
|
||||
title = {{A Fundamental Equation of State For Low-GWP Refrigerant HFO-1234ze(Z)}},
|
||||
@@ -1164,6 +1176,19 @@
|
||||
timestamp = {2013.04.10}
|
||||
}
|
||||
|
||||
@ARTICLE{SantamariaPerez-PRB-2010,
|
||||
author = {David Santamar{\'i}a-P{\'e}rez and Goutam Dev Mukherjee and Beate
|
||||
Schwager and Reinhard Boehler},
|
||||
title = {High-pressure melting curve of helium and neon: Deviations from corresponding
|
||||
states theory},
|
||||
journal = {Physical Review B},
|
||||
year = {2010},
|
||||
volume = {81},
|
||||
pages = {214101:1-5},
|
||||
owner = {Belli},
|
||||
timestamp = {2014.06.09}
|
||||
}
|
||||
|
||||
@ARTICLE{Scalabrin-JPCRD-2006-CO2,
|
||||
author = {G. Scalabrin and P. Marchi and F. Finezzo and R. Span},
|
||||
title = {{A Reference Multiparameter Thermal Conductivity Equation for Carbon
|
||||
|
||||
BIN
Web/_static/PVTCP.png
Normal file
BIN
Web/_static/PVTCP.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 29 KiB |
@@ -1,20 +0,0 @@
|
||||
|
||||
<h3>News</h3>
|
||||
|
||||
CoolProp was awarded the Prof. Gianfranco Angelino Award for Best Poster at the ASME ORC Conference 2013 held in Rotterdam, Netherlands
|
||||
<br>
|
||||
Here's the poster (click to view PDF):
|
||||
<a href="_static/poster.pdf"> <img src="_static/poster_thumb.png"></a>
|
||||
|
||||
<h3> Help? </h3>
|
||||
|
||||
<a href="https://github.com/ibell/coolprop/issues"> File github issue </a>
|
||||
<br>
|
||||
<a href="https://groups.google.com/d/forum/coolprop-users">Google group</a>
|
||||
|
||||
<h3> Open-source projects using CoolProp </h3>
|
||||
<a href="http://www.thermocycle.net/"> ThermoCycle </a>
|
||||
<br>
|
||||
<a href="http://pdsim.sourceforge.net/"> PDSim </a>
|
||||
<br>
|
||||
<a href="http://achp.sourceforge.net/"> ACHP </a>
|
||||
@@ -11,17 +11,3 @@
|
||||
<li><a href="{{ pathto('contents') }}">Documentation</a> »</li>
|
||||
{% endblock %}
|
||||
|
||||
|
||||
{% block relbar1 %}
|
||||
<link rel="shortcut icon" href="_static/favicon.ico">
|
||||
|
||||
<div style="background-color: #999999; text-align: left; padding: 10px 10px 15px 15px">
|
||||
<a href="{{ pathto('index') }}"><img src="{{pathto("_static/header.png", 1) }}" border="0" alt="matplotlib"/></a>
|
||||
</div>
|
||||
{{ super() }}
|
||||
{% endblock %}
|
||||
|
||||
{# put the sidebar before the body #}
|
||||
{% block sidebar1 %}{{ sidebar() }}{% endblock %}
|
||||
{% block sidebar2 %}{% endblock %}
|
||||
|
||||
|
||||
51
Web/conf.py
51
Web/conf.py
@@ -33,17 +33,29 @@ extensions = [#'matplotlib.sphinxext.only_directives',
|
||||
'sphinx.ext.intersphinx',
|
||||
'sphinx.ext.autodoc',
|
||||
'sphinx.ext.mathjax',
|
||||
'sphinx.ext.extlinks',
|
||||
'ipython_console_highlighting',
|
||||
'sphinxcontrib.napoleon',
|
||||
'sphinxcontrib.doxylink'
|
||||
'sphinxcontrib.doxylink',
|
||||
|
||||
# cloud's extensions
|
||||
#'cloud_sptheme.ext.autodoc_sections',
|
||||
#'cloud_sptheme.ext.index_styling',
|
||||
'cloud_sptheme.ext.relbar_toc',
|
||||
#'cloud_sptheme.ext.escaped_samp_literals',
|
||||
#'cloud_sptheme.ext.issue_tracker',
|
||||
#'cloud_sptheme.ext.table_styling',
|
||||
|
||||
#'inheritance_diagram',
|
||||
#'numpydoc',
|
||||
#'breathe'
|
||||
]
|
||||
|
||||
|
||||
|
||||
plot_formats = [('png',80)]
|
||||
|
||||
|
||||
index_doc = "index"
|
||||
|
||||
numpydoc_show_class_members = False
|
||||
|
||||
@@ -74,6 +86,9 @@ version = ver.rsplit('.',1)[0]
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = ver
|
||||
|
||||
extlinks = {'sfdownloads': ('http://sourceforge.net/projects/coolprop/files/CoolProp/'+release+'/%s',
|
||||
'issue ')}
|
||||
|
||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||
# for a list of supported languages.
|
||||
#language = None
|
||||
@@ -120,6 +135,26 @@ autoclass_content = 'both'
|
||||
|
||||
# -- Options for HTML output ---------------------------------------------------
|
||||
|
||||
# import Cloud
|
||||
import cloud_sptheme as csp
|
||||
|
||||
# ... some contents omitted ...
|
||||
|
||||
# set the html theme
|
||||
html_theme = "cloud"
|
||||
# NOTE: there is also a red-colored version named "redcloud"
|
||||
|
||||
# ... some contents omitted ...
|
||||
|
||||
# set the theme path to point to cloud's theme data
|
||||
html_theme_path = [csp.get_theme_dir()]
|
||||
|
||||
# [optional] set some of the options listed above...
|
||||
html_theme_options = { "roottarget": "index",
|
||||
"max_width" : "13in",
|
||||
"logotarget": "index"
|
||||
}
|
||||
|
||||
# The theme to use for HTML and HTML Help pages. Major themes that come with
|
||||
# Sphinx are currently 'default' and 'sphinxdoc'.
|
||||
## html_theme = 'sphinxdoc'
|
||||
@@ -129,7 +164,7 @@ autoclass_content = 'both'
|
||||
# The style sheet to use for HTML and HTML Help pages. A file of that name
|
||||
# must exist either in Sphinx' static/ path, or in one of the custom paths
|
||||
# given in html_static_path.
|
||||
html_style = 'Coolprop.css'
|
||||
#html_style = 'Coolprop.css'
|
||||
|
||||
# Theme options are theme-specific and customize the look and feel of a theme
|
||||
# further. For a list of options available for each theme, see the
|
||||
@@ -148,7 +183,7 @@ html_style = 'Coolprop.css'
|
||||
|
||||
# The name of an image file (relative to this directory) to place at the top
|
||||
# of the sidebar.
|
||||
#html_logo = None
|
||||
html_logo = "_static/PVTCP.png"
|
||||
|
||||
# The name of an image file (within the static path) to use as favicon of the
|
||||
# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
|
||||
@@ -169,15 +204,15 @@ html_static_path = ['_static']
|
||||
#html_use_smartypants = True
|
||||
|
||||
# Content template for the index page.
|
||||
html_index = 'index.html'
|
||||
#html_index = 'index.html'
|
||||
|
||||
# Custom sidebar templates, maps page names to templates.
|
||||
html_sidebars = {'index': 'indexsidebar.html',
|
||||
}
|
||||
# html_sidebars = {'index': 'indexsidebar.html',
|
||||
# }
|
||||
|
||||
# Additional templates that should be rendered to pages, maps page names to
|
||||
# template names.
|
||||
html_additional_pages = {'index': 'index.html'}
|
||||
# html_additional_pages = {'index': 'index.html'}
|
||||
|
||||
# If false, no module index is generated.
|
||||
#html_use_modindex = True
|
||||
|
||||
86
Web/index.rst
Normal file
86
Web/index.rst
Normal file
@@ -0,0 +1,86 @@
|
||||
|
||||
=================
|
||||
What is CoolProp?
|
||||
=================
|
||||
|
||||
CoolProp is a C++ library that implements:
|
||||
|
||||
- Pure and pseudo-pure fluid equations of state and transport properties for 114 components
|
||||
- Mixture properties using high-accuracy Helmholtz energy formulations (or cubic EOS)
|
||||
- Correlations of properties of incompressible fluids and brines
|
||||
- Highest accuracy psychrometric routines
|
||||
|
||||
======================
|
||||
Environments Supported
|
||||
======================
|
||||
|
||||
Programming Languages:
|
||||
|
||||
- Fully-featured wrappers: :sfdownloads:`Python (2.x, 3.x) <Python>` , :sfdownloads:`Modelica <Modelica>`, :sfdownloads:`Octave <Octave>`, :sfdownloads:`C# <Csharp>`, :sfdownloads:`MathCAD <MathCAD>`, :sfdownloads:`Java <Java>`
|
||||
- High-level interface only: :sfdownloads:`Labview <Labview>`, :sfdownloads:`EES <EES>`, :sfdownloads:`Microsoft Excel <Microsoft Excel>`, :sfdownloads:`Javascript <Javascript>`, :sfdownloads:`MATLAB <MATLAB>`
|
||||
- Rudimentary wrappers exist for FORTRAN, :sfdownloads:`Maple <Maple>`, :sfdownloads:`Mathematica <Mathematica>`, :sfdownloads:`Scilab <Scilab>`, VB.net
|
||||
|
||||
Architectures:
|
||||
|
||||
- 32-bit/64-bit
|
||||
- Windows, Linux, OSX, Raspberry PI, VxWorks Compact Rio, etc.
|
||||
|
||||
============================
|
||||
High-Level Interface Example
|
||||
============================
|
||||
In most languages, the code to calculate density ``D`` of Nitrogen at a temperature ``T`` of 298 K and a pressure ``P`` of 101325 Pa is something like::
|
||||
|
||||
rho = PropsSI('D', 'T', 298.15, 'P', 101325, 'Nitrogen')
|
||||
|
||||
See more examples at `examples/examples <Examples>`_
|
||||
|
||||
===================================
|
||||
Open-Source Projects Using CoolProp
|
||||
===================================
|
||||
|
||||
- `Thermocycle <http://www.thermocycle.net/>`_
|
||||
- `PDSim <http://pdsim.sourceforge.net/>`_
|
||||
- `ACHP <http://achp.sourceforge.net/>`_
|
||||
- `DWSim <http://sourceforge.net/projects/dwsim/>`_
|
||||
|
||||
====
|
||||
Help
|
||||
====
|
||||
|
||||
- File a `Github issue <https://github.com/CoolProp/CoolProp/issues>`_
|
||||
- Email the `Google group <https://groups.google.com/d/forum/coolprop-users>`_
|
||||
|
||||
===============
|
||||
Main Developers
|
||||
===============
|
||||
|
||||
The primary developers are:
|
||||
|
||||
- `Ian Bell <mailto:ian.h.bell@gmail.com>`_, `Sylvain Quoilin <mailto:squoilin@ulg.ac.be>`_, `Vincent Lemort <mailto:vincent.lemort@ulg.ac.be>`_, University of Liege, Liege, Belgium
|
||||
- `Jorrit Wronski <mailto:jowr@mek.dtu.dk>`_, Technical University of Denmark, Kgs. Lyngby, Denmark
|
||||
|
||||
==========
|
||||
Supporters
|
||||
==========
|
||||
|
||||
.. image:: _static/labothap.png
|
||||
:height: 100px
|
||||
:alt: labothap
|
||||
:target: http://www.labothap.ulg.ac.be/
|
||||
|
||||
.. image:: _static/logo_ORCNext.jpg
|
||||
:height: 100px
|
||||
:alt: ORCNext
|
||||
:target: http://www.orcnext.be/
|
||||
|
||||
\
|
||||
|
||||
.. image:: _static/herrick.png
|
||||
:height: 100px
|
||||
:alt: Herrick
|
||||
:target: https://engineering.purdue.edu/Herrick/index.html
|
||||
|
||||
.. image:: _static/maplesoft_logo.png
|
||||
:height: 100px
|
||||
:alt: Maple
|
||||
:target: http://maplesoft.com/index.aspx
|
||||
38
Web/make_logo.py
Normal file
38
Web/make_logo.py
Normal file
@@ -0,0 +1,38 @@
|
||||
import matplotlib
|
||||
matplotlib.use('WXAgg')
|
||||
from matplotlib import cm
|
||||
import matplotlib.pyplot as plt
|
||||
|
||||
import numpy as np
|
||||
import CoolProp
|
||||
from mpl_toolkits.mplot3d import Axes3D
|
||||
fig = plt.figure(figsize = (2,2))
|
||||
ax = fig.add_subplot(111, projection='3d')
|
||||
|
||||
NT = 1000
|
||||
NR = 1000
|
||||
rho,t = np.logspace(np.log10(2e-3), np.log10(1100), NR),np.linspace(275.15,700,NT)
|
||||
RHO,T = np.meshgrid(rho,t)
|
||||
|
||||
P = CoolProp.CoolProp.PropsSI('P','D',RHO.reshape((NR*NT,1)),'T',T.reshape((NR*NT,1)),'REFPROP-Water').reshape(NT,NR)
|
||||
|
||||
Tsat = np.linspace(273.17,647.0,100)
|
||||
psat = CoolProp.CoolProp.PropsSI('P','Q',0,'T',Tsat,'Water')
|
||||
rhoL = CoolProp.CoolProp.PropsSI('D','Q',0,'T',Tsat,'Water')
|
||||
rhoV = CoolProp.CoolProp.PropsSI('D','Q',1,'T',Tsat,'Water')
|
||||
|
||||
ax.plot_surface(np.log(RHO),T,np.log(P), cmap=cm.jet, edgecolor = 'none')
|
||||
ax.plot(np.log(rhoL),Tsat,np.log(psat),color='k',lw=2)
|
||||
ax.plot(np.log(rhoV),Tsat,np.log(psat),color='k',lw=2)
|
||||
|
||||
ax.text(0.3,800,22, "CoolProp", size = 12)
|
||||
ax.set_frame_on(False)
|
||||
ax.set_axis_off()
|
||||
ax.view_init(22, -136)
|
||||
ax.set_xlabel(r'$\ln\rho$ ')
|
||||
ax.set_ylabel('$T$')
|
||||
ax.set_zlabel('$p$')
|
||||
plt.tight_layout()
|
||||
plt.savefig('_static/PVTCP.png',transparent = True)
|
||||
plt.savefig('_static/PVTCP.pdf',transparent = True)
|
||||
plt.close()
|
||||
41
dev/ci/README.rst
Normal file
41
dev/ci/README.rst
Normal file
@@ -0,0 +1,41 @@
|
||||
Set up linux slave
|
||||
==================
|
||||
|
||||
In some folder (probably the home folder), do::
|
||||
|
||||
sudo apt-get buildbot buildbot-slave
|
||||
buildslave create-slave slave 10.0.2.2:9989 example-slave pass
|
||||
buildslave start slave
|
||||
|
||||
``slave`` is the folder that the configuration will go into, ``example-slave`` is the name of the slave, ``pass`` is the password, ``10.0.0.2`` is the IP address of the host that the VM uses (shouldn't need to change it, see OSX host instructions below)
|
||||
|
||||
This should start the Twisted server, yielding output like::
|
||||
|
||||
ian@ian-VirtualBox:~$ buildslave start slave/
|
||||
Following twistd.log until startup finished..
|
||||
2014-06-08 20:17:50+0200 [-] Log opened.
|
||||
2014-06-08 20:17:50+0200 [-] twistd 14.0.0 (/usr/bin/python 2.7.5) starting up.
|
||||
2014-06-08 20:17:50+0200 [-] reactor class: twisted.internet.epollreactor.EPollReactor.
|
||||
2014-06-08 20:17:50+0200 [-] Starting BuildSlave -- version: 0.8.8
|
||||
2014-06-08 20:17:50+0200 [-] recording hostname in twistd.hostname
|
||||
2014-06-08 20:17:50+0200 [-] Starting factory <buildslave.bot.BotFactory instance at 0x8a70a4c>
|
||||
2014-06-08 20:17:50+0200 [-] Connecting to 10.0.2.2:9989
|
||||
2014-06-08 20:17:50+0200 [Broker,client] message from master: attached
|
||||
The buildslave appears to have (re)started correctly.`
|
||||
|
||||
Configuration of OSX Virtualbox host
|
||||
====================================
|
||||
|
||||
Thanks to http://stackoverflow.com/questions/1261975/addressing-localhost-from-a-virtualbox-virtual-machine and the comment of spsaucier you basically need to do the following, copied verbatim:
|
||||
|
||||
To enable this on OSX I had to do the following:
|
||||
|
||||
1. Shut your virtual machine down.
|
||||
2. Go to ``VirtualBox Preferences -> Network -> Host-only Networks ->`` click the "+" icon. Click OK.
|
||||
3.Select your box and click the "Settings" icon -> Network -> Adapter 2 -> On the "Attached to:" dropdown, select "Host-only Adapter" and your network (vboxnet0) should show up below by default. Click OK.
|
||||
4. Once you start your box up again, you should be able to access localhost at http://10.0.2.2/
|
||||
|
||||
You can refer to it by localhost and access other localhosted sites by adding their references to the hosts file (C:\windows\system32\drivers\etc\hosts) like the following::
|
||||
|
||||
10.0.2.2 localhost
|
||||
10.0.2.2 subdomain.localhost
|
||||
@@ -10,7 +10,7 @@
|
||||
<Option output="bin/Debug/coolprop" prefix_auto="1" extension_auto="1" />
|
||||
<Option object_output="obj/Debug/" />
|
||||
<Option type="1" />
|
||||
<Option compiler="clang" />
|
||||
<Option compiler="gcc" />
|
||||
<Compiler>
|
||||
<Add option="-g" />
|
||||
<Add option="-DENABLE_CATCH" />
|
||||
@@ -47,6 +47,7 @@
|
||||
<Unit filename="../../include/Helmholtz.h" />
|
||||
<Unit filename="../../include/HumidAirProp.h" />
|
||||
<Unit filename="../../include/Ice.h" />
|
||||
<Unit filename="../../include/IncompressibleFluid.h" />
|
||||
<Unit filename="../../include/MatrixMath.h" />
|
||||
<Unit filename="../../include/PlatformDetermination.h" />
|
||||
<Unit filename="../../include/PolyMath.h" />
|
||||
@@ -92,6 +93,8 @@
|
||||
<Unit filename="../../src/Backends/Helmholtz/VLERoutines.h" />
|
||||
<Unit filename="../../src/Backends/Incompressible/IncompressibleBackend.cpp" />
|
||||
<Unit filename="../../src/Backends/Incompressible/IncompressibleBackend.h" />
|
||||
<Unit filename="../../src/Backends/Incompressible/IncompressibleLibrary.cpp" />
|
||||
<Unit filename="../../src/Backends/Incompressible/IncompressibleLibrary.h" />
|
||||
<Unit filename="../../src/Backends/REFPROP/REFPROPBackend.cpp" />
|
||||
<Unit filename="../../src/Backends/REFPROP/REFPROPBackend.h" />
|
||||
<Unit filename="../../src/Backends/REFPROP/REFPROPMixtureBackend.cpp" />
|
||||
|
||||
@@ -123,14 +123,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "106-98-9",
|
||||
"CRITICAL": {
|
||||
"T": 419.29,
|
||||
"T_units": "K",
|
||||
"p": 4005100.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4240.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "UNKNOWN",
|
||||
"FH": 4,
|
||||
@@ -146,6 +138,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Lemmon-FPE-2005",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 419.29,
|
||||
"T_units": "K",
|
||||
"p": 4005100,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4240,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 87.8,
|
||||
"T_units": "K",
|
||||
"p": 5.945299459547533e-10,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 14581.857989478618,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 87.8,
|
||||
"T_units": "K",
|
||||
"p": 5.945299459547533e-10,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 8.144127114069056e-10,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 525,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 87.8,
|
||||
@@ -245,23 +263,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 50000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 5.94529946e-07,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 419.29,
|
||||
"T_units": "K",
|
||||
"p": 4005100,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4240,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 14581.83824668767,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 8.148005394321945e-10,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "1-Butene",
|
||||
"REFPROP_NAME": "1BUTENE"
|
||||
"REFPROP_NAME": "1BUTENE",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 419.29,
|
||||
"T_units": "K",
|
||||
"p": 4005100.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4240.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 87.8,
|
||||
"T_units": "K",
|
||||
"p": 5.945299459547533e-10,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 14581.857989478618,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 87.8,
|
||||
"T_units": "K",
|
||||
"p": 5.945299459547533e-10,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 8.144127114069056e-10,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -109,18 +109,36 @@
|
||||
}
|
||||
},
|
||||
"CAS": "64-19-7",
|
||||
"CRITICAL": {
|
||||
"T": 590.7,
|
||||
"T_units": "K",
|
||||
"p": 5817526.2731114905,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 5844.938283446536,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"EOS": [
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Piazza-FPE-2011",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 590.7,
|
||||
"T_units": "K",
|
||||
"p": 5817526.273111491,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 5844.938283446536,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 289.8,
|
||||
"T_units": "K",
|
||||
"p": 1.075589507812013,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 17521.28114508397,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 289.8,
|
||||
"T_units": "K",
|
||||
"p": 1.075589507812013,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.8334185536602265,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 500,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 289.8,
|
||||
@@ -247,23 +265,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 30000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 1075.589508,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 590.7,
|
||||
"T_units": "K",
|
||||
"p": 5817526.273111491,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 5844.938283446536,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 17521.26343475435,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 0.8334697179759745,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "AceticAcid",
|
||||
"REFPROP_NAME": "N/A"
|
||||
"REFPROP_NAME": "N/A",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 590.7,
|
||||
"T_units": "K",
|
||||
"p": 5817526.2731114905,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 5844.938283446536,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 289.8,
|
||||
"T_units": "K",
|
||||
"p": 1.075589507812013,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 17521.28114508397,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 289.8,
|
||||
"T_units": "K",
|
||||
"p": 1.075589507812013,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.8334185536602265,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -121,14 +121,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "67-64-1",
|
||||
"CRITICAL": {
|
||||
"T": 508.1,
|
||||
"T_units": "K",
|
||||
"p": 4700000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4699.999999999999,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "UNKNOWN",
|
||||
"FH": 3,
|
||||
@@ -144,6 +136,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Lemmon-JCED-2006",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 508.1,
|
||||
"T_units": "K",
|
||||
"p": 4700000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4699.999999999999,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 178.5,
|
||||
"T_units": "K",
|
||||
"p": 0.002326486782481569,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 15722.96134426609,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 178.5,
|
||||
"T_units": "K",
|
||||
"p": 0.002326486782481569,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.001567650380630057,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 550,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 178.5,
|
||||
@@ -247,23 +265,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 700000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 2.326486782,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 508.1,
|
||||
"T_units": "K",
|
||||
"p": 4700000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4699.999999999999,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 15722.94256896055,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 0.001567864714047582,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "Acetone",
|
||||
"REFPROP_NAME": "ACETONE"
|
||||
"REFPROP_NAME": "ACETONE",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 508.1,
|
||||
"T_units": "K",
|
||||
"p": 4700000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4699.999999999999,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 178.5,
|
||||
"T_units": "K",
|
||||
"p": 0.002326486782481569,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 15722.96134426609,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 178.5,
|
||||
"T_units": "K",
|
||||
"p": 0.002326486782481569,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.001567650380630057,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -110,14 +110,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "AIR.PPF",
|
||||
"CRITICAL": {
|
||||
"T": 132.5306,
|
||||
"T_units": "K",
|
||||
"p": 3786000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 11830.8,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "UNKNOWN",
|
||||
"FH": 0,
|
||||
@@ -133,6 +125,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Lemmon-JPCRD-2000",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 132.6312,
|
||||
"T_units": "K",
|
||||
"p": 3785020,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 10447.7,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 59.75,
|
||||
"T_units": "K",
|
||||
"p": 5.2646378681251385,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 33066.64175205524,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 59.75,
|
||||
"T_units": "K",
|
||||
"p": 2.4316336588845036,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4.906850672383319,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 2000,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 59.75,
|
||||
@@ -290,25 +308,37 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 2000000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": true,
|
||||
"ptriple": 2431.633659,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 132.6312,
|
||||
"T_units": "K",
|
||||
"p": 3785020,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 10447.7,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 3.452387774956794e+100,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 3.452387774956794e+100,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": true
|
||||
}
|
||||
],
|
||||
"NAME": "Air",
|
||||
"REFPROP_NAME": "AIR",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 132.5306,
|
||||
"T_units": "K",
|
||||
"p": 3786000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 11830.8,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 59.75,
|
||||
"T_units": "K",
|
||||
"p": 5.2646378681251385,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 33066.64175205524,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 59.75,
|
||||
"T_units": "K",
|
||||
"p": 2.4316336588845036,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4.906850672383319,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"TRANSPORT": {
|
||||
"conductivity": {
|
||||
"BibTeX": "Lemmon-IJT-2004",
|
||||
|
||||
@@ -125,14 +125,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "7664-41-7",
|
||||
"CRITICAL": {
|
||||
"T": 405.4,
|
||||
"T_units": "K",
|
||||
"p": 11333000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 13211.777154312385,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "B2",
|
||||
"FH": 1,
|
||||
@@ -148,6 +140,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "TillnerRoth-DKV-1993",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 405.4,
|
||||
"T_units": "K",
|
||||
"p": 11333000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 13211.77715431239,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 195.495,
|
||||
"T_units": "K",
|
||||
"p": 6.091223107699592,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 43035.3392920732,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 195.495,
|
||||
"T_units": "K",
|
||||
"p": 6.091223107699592,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3.76350602709112,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 700,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 195.495,
|
||||
@@ -281,25 +299,37 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 1000000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 6091.223108,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 405.4,
|
||||
"T_units": "K",
|
||||
"p": 11333000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 13211.77715431239,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 43035.27755672421,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 3.763788357868352,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "Ammonia",
|
||||
"REFPROP_NAME": "AMMONIA",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 405.4,
|
||||
"T_units": "K",
|
||||
"p": 11333000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 13211.777154312385,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 195.495,
|
||||
"T_units": "K",
|
||||
"p": 6.091223107699592,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 43035.3392920732,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 195.495,
|
||||
"T_units": "K",
|
||||
"p": 6.091223107699592,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3.76350602709112,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"TRANSPORT": {
|
||||
"conductivity": {
|
||||
"BibTeX": "Tufeu-BBPC-1984",
|
||||
|
||||
@@ -4,6 +4,27 @@
|
||||
"ARGON"
|
||||
],
|
||||
"ANCILLARIES": {
|
||||
"melting_line": {
|
||||
"BibTeX": "Tegeler-JPCRD-1999",
|
||||
"T_m": 87.28,
|
||||
"parts": [
|
||||
{
|
||||
"T_0": 83.8058,
|
||||
"T_max": 254.0,
|
||||
"T_min": 83.806,
|
||||
"a": [
|
||||
-7476.2665,
|
||||
9959.0613
|
||||
],
|
||||
"p_0": 68891,
|
||||
"t": [
|
||||
1.05,
|
||||
1.275
|
||||
]
|
||||
}
|
||||
],
|
||||
"type": "polynomial_in_Tr"
|
||||
},
|
||||
"pL": {
|
||||
"T_r": 150.687,
|
||||
"Tmax": 150.68699999999976,
|
||||
@@ -121,14 +142,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "7440-37-1",
|
||||
"CRITICAL": {
|
||||
"T": 150.687,
|
||||
"T_units": "K",
|
||||
"p": 4863000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 13407.429658556124,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "A1",
|
||||
"FH": 0,
|
||||
@@ -144,6 +157,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Tegeler-JPCRD-1999",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 150.687,
|
||||
"T_units": "K",
|
||||
"p": 4863000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 13407.42965855612,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 83.806,
|
||||
"T_units": "K",
|
||||
"p": 68.89247707906286,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 35465.24383230812,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 83.806,
|
||||
"T_units": "K",
|
||||
"p": 68.89247707906286,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 101.49850850490478,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 700,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 83.806,
|
||||
@@ -373,25 +412,37 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 1000000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 68892.47708,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 150.687,
|
||||
"T_units": "K",
|
||||
"p": 4863000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 13407.42965855612,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 35465.09209833706,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 101.5092253011949,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "Argon",
|
||||
"REFPROP_NAME": "ARGON",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 150.687,
|
||||
"T_units": "K",
|
||||
"p": 4863000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 13407.429658556124,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 83.806,
|
||||
"T_units": "K",
|
||||
"p": 68.89247707906286,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 35465.24383230812,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 83.806,
|
||||
"T_units": "K",
|
||||
"p": 68.89247707906286,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 101.49850850490478,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"TRANSPORT": {
|
||||
"conductivity": {
|
||||
"BibTeX": "Lemmon-IJT-2004",
|
||||
|
||||
@@ -125,14 +125,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "71-43-2",
|
||||
"CRITICAL": {
|
||||
"T": 562.02,
|
||||
"T_units": "K",
|
||||
"p": 4894000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3902.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "UNKNOWN",
|
||||
"FH": 3,
|
||||
@@ -148,6 +140,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Thol-HTHP-2012",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 562.02,
|
||||
"T_units": "K",
|
||||
"p": 4894000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3902,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 278.674,
|
||||
"T_units": "K",
|
||||
"p": 4.783772578048188,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 11446.465591920278,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 278.674,
|
||||
"T_units": "K",
|
||||
"p": 4.783772578048188,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 2.0716402525505235,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 725,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 278.674,
|
||||
@@ -288,25 +306,37 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 500000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 4783.772578,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 562.02,
|
||||
"T_units": "K",
|
||||
"p": 4894000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3902,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 11446.45205146822,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 2.07174574079405,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "Benzene",
|
||||
"REFPROP_NAME": "BENZENE",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 562.02,
|
||||
"T_units": "K",
|
||||
"p": 4894000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3902.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 278.674,
|
||||
"T_units": "K",
|
||||
"p": 4.783772578048188,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 11446.465591920278,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 278.674,
|
||||
"T_units": "K",
|
||||
"p": 4.783772578048188,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 2.0716402525505235,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"TRANSPORT": {
|
||||
"conductivity": {
|
||||
"BibTeX": "Assael-JPCRD-2013-Hexane",
|
||||
|
||||
@@ -7,6 +7,27 @@
|
||||
"CARBONDIOXIDE"
|
||||
],
|
||||
"ANCILLARIES": {
|
||||
"melting_line": {
|
||||
"BibTeX": "Span-JPCRD-1996",
|
||||
"T_m": 216.58,
|
||||
"parts": [
|
||||
{
|
||||
"T_0": 216.592,
|
||||
"T_max": 327.6,
|
||||
"T_min": 216.592,
|
||||
"a": [
|
||||
1955.539,
|
||||
2055.4593
|
||||
],
|
||||
"p_0": 517950,
|
||||
"t": [
|
||||
1,
|
||||
2
|
||||
]
|
||||
}
|
||||
],
|
||||
"type": "polynomial_in_Theta"
|
||||
},
|
||||
"pL": {
|
||||
"T_r": 304.1282,
|
||||
"Tmax": 304.1281999999994,
|
||||
@@ -124,14 +145,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "124-38-9",
|
||||
"CRITICAL": {
|
||||
"T": 304.1282,
|
||||
"T_units": "K",
|
||||
"p": 7377300.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 10624.906299999999,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "A1",
|
||||
"FH": 0,
|
||||
@@ -147,6 +160,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Span-JPCRD-1996",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 304.1282,
|
||||
"T_units": "K",
|
||||
"p": 7377300,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 10624.9063,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 216.592,
|
||||
"T_units": "K",
|
||||
"p": 517.9643433349185,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 26777.277860212125,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 216.592,
|
||||
"T_units": "K",
|
||||
"p": 517.9643433349185,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 312.6777446892703,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 1100,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 216.592,
|
||||
@@ -437,25 +476,37 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 800000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 517964.3433,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 304.1282,
|
||||
"T_units": "K",
|
||||
"p": 7377300,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 10624.9063,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 26777.19637087835,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 312.6907221828656,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "CarbonDioxide",
|
||||
"REFPROP_NAME": "CO2",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 304.1282,
|
||||
"T_units": "K",
|
||||
"p": 7377300.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 10624.906299999999,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 216.592,
|
||||
"T_units": "K",
|
||||
"p": 517.9643433349185,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 26777.277860212125,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 216.592,
|
||||
"T_units": "K",
|
||||
"p": 517.9643433349185,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 312.6777446892703,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"TRANSPORT": {
|
||||
"conductivity": {
|
||||
"BibTeX": "Scalabrin-JPCRD-2006-CO2",
|
||||
|
||||
@@ -4,6 +4,21 @@
|
||||
"CARBONMONOXIDE"
|
||||
],
|
||||
"ANCILLARIES": {
|
||||
"melting_line": {
|
||||
"BibTeX": "Barreiros-JCT-1982",
|
||||
"T_m": 68.3,
|
||||
"parts": [
|
||||
{
|
||||
"T_0": 1,
|
||||
"T_max": 87.5,
|
||||
"T_min": 68.16,
|
||||
"a": 19560.8,
|
||||
"c": 2.10747,
|
||||
"p_0": -142921439.2
|
||||
}
|
||||
],
|
||||
"type": "Simon"
|
||||
},
|
||||
"pL": {
|
||||
"T_r": 132.86,
|
||||
"Tmax": 132.8599999999997,
|
||||
@@ -121,14 +136,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "630-08-0",
|
||||
"CRITICAL": {
|
||||
"T": 132.86,
|
||||
"T_units": "K",
|
||||
"p": 3494000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 10850.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "UNKNOWN",
|
||||
"FH": 4,
|
||||
@@ -144,6 +151,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Lemmon-JCED-2006",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 132.86,
|
||||
"T_units": "K",
|
||||
"p": 3494000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 10850,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 68.16,
|
||||
"T_units": "K",
|
||||
"p": 15.536876656377347,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 30329.705964719713,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 68.16,
|
||||
"T_units": "K",
|
||||
"p": 15.536876656377347,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 27.707433845423196,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 500,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 68.16,
|
||||
@@ -246,23 +279,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 100000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 15536.87666,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 132.86,
|
||||
"T_units": "K",
|
||||
"p": 3494000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 10850,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 30329.56214318188,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 27.71177905101628,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "CarbonMonoxide",
|
||||
"REFPROP_NAME": "CO"
|
||||
"REFPROP_NAME": "CO",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 132.86,
|
||||
"T_units": "K",
|
||||
"p": 3494000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 10850.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 68.16,
|
||||
"T_units": "K",
|
||||
"p": 15.536876656377347,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 30329.705964719713,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 68.16,
|
||||
"T_units": "K",
|
||||
"p": 15.536876656377347,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 27.707433845423196,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -121,14 +121,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "463-58-1",
|
||||
"CRITICAL": {
|
||||
"T": 378.77,
|
||||
"T_units": "K",
|
||||
"p": 6370000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 7410.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "UNKNOWN",
|
||||
"FH": 4,
|
||||
@@ -144,6 +136,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Lemmon-JCED-2006",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 378.77,
|
||||
"T_units": "K",
|
||||
"p": 6370000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 7410,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 134.3,
|
||||
"T_units": "K",
|
||||
"p": 0.06443457746825784,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 22517.918912779165,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 134.3,
|
||||
"T_units": "K",
|
||||
"p": 0.06443457746825784,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.05771047185816631,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 650,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 134.3,
|
||||
@@ -243,23 +261,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 50000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 64.43457747,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 378.77,
|
||||
"T_units": "K",
|
||||
"p": 6370000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 7410,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 22517.88586815158,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 0.05771851535442867,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "CarbonylSulfide",
|
||||
"REFPROP_NAME": "COS"
|
||||
"REFPROP_NAME": "COS",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 378.77,
|
||||
"T_units": "K",
|
||||
"p": 6370000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 7410.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 134.3,
|
||||
"T_units": "K",
|
||||
"p": 0.06443457746825784,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 22517.918912779165,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 134.3,
|
||||
"T_units": "K",
|
||||
"p": 0.06443457746825784,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.05771047185816631,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -4,6 +4,21 @@
|
||||
"CYCLOHEXANE"
|
||||
],
|
||||
"ANCILLARIES": {
|
||||
"melting_line": {
|
||||
"BibTeX": "Penoncello-IJT-1995",
|
||||
"T_m": 279.96,
|
||||
"parts": [
|
||||
{
|
||||
"T_0": 279.7,
|
||||
"T_max": 401.7,
|
||||
"T_min": 279.47,
|
||||
"a": 383400000.0,
|
||||
"c": 1.41,
|
||||
"p_0": 0
|
||||
}
|
||||
],
|
||||
"type": "Simon"
|
||||
},
|
||||
"pL": {
|
||||
"T_r": 553.6,
|
||||
"Tmax": 553.5999999999988,
|
||||
@@ -121,14 +136,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "110-82-7",
|
||||
"CRITICAL": {
|
||||
"T": 553.6,
|
||||
"T_units": "K",
|
||||
"p": 4082400.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3224.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "UNKNOWN",
|
||||
"FH": 3,
|
||||
@@ -144,6 +151,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Zhou-PREPRINT-2014",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 553.6,
|
||||
"T_units": "K",
|
||||
"p": 4082400,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3224,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 279.47,
|
||||
"T_units": "K",
|
||||
"p": 5.240240246526451,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 9403.362051842001,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 279.47,
|
||||
"T_units": "K",
|
||||
"p": 5.240240246526451,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 2.264530785370476,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 700,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 279.47,
|
||||
@@ -328,23 +361,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 250000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 5240.240247,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 553.6,
|
||||
"T_units": "K",
|
||||
"p": 4082400,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3224,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 9403.351008678657,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 2.264642210488062,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "CycloHexane",
|
||||
"REFPROP_NAME": "CYCLOHEX"
|
||||
"REFPROP_NAME": "CYCLOHEX",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 553.6,
|
||||
"T_units": "K",
|
||||
"p": 4082400.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3224.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 279.47,
|
||||
"T_units": "K",
|
||||
"p": 5.240240246526451,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 9403.362051842001,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 279.47,
|
||||
"T_units": "K",
|
||||
"p": 5.240240246526451,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 2.264530785370476,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -111,14 +111,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "75-19-4",
|
||||
"CRITICAL": {
|
||||
"T": 398.3,
|
||||
"T_units": "K",
|
||||
"p": 5579700.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 6142.9149,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "UNKNOWN",
|
||||
"FH": 2,
|
||||
@@ -134,6 +126,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "Polt-CT-1992",
|
||||
"BibTeX_EOS": "Polt-CT-1992",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 398.3,
|
||||
"T_units": "K",
|
||||
"p": 5579700,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 6142.9149,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 273.0,
|
||||
"T_units": "K",
|
||||
"p": 342.7022037357092,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 15594.27233601817,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 273.0,
|
||||
"T_units": "K",
|
||||
"p": 342.7022037357092,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 164.03030361467836,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 473,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 145.7,
|
||||
@@ -283,23 +301,21 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 28000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 342702.2037,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 398.3,
|
||||
"T_units": "K",
|
||||
"p": 5579700,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 6142.9149,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 2.376369382856871e+100,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 2.376369382856871e+100,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "CycloPropane",
|
||||
"REFPROP_NAME": "CYCLOPRO"
|
||||
"REFPROP_NAME": "CYCLOPRO",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 398.3,
|
||||
"T_units": "K",
|
||||
"p": 5579700.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 6142.9149,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {},
|
||||
"triple_vapor": {}
|
||||
}
|
||||
}
|
||||
@@ -111,14 +111,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "287-92-3",
|
||||
"CRITICAL": {
|
||||
"T": 511.72,
|
||||
"T_units": "K",
|
||||
"p": 4571200.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3820.0000000000005,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "UNKNOWN",
|
||||
"FH": 3,
|
||||
@@ -134,6 +126,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Gedanitz-PREPRINT-2013",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 511.72,
|
||||
"T_units": "K",
|
||||
"p": 4571200,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3820.000000000001,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 179.7,
|
||||
"T_units": "K",
|
||||
"p": 0.00885427141819524,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 12107.608792031857,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 179.7,
|
||||
"T_units": "K",
|
||||
"p": 0.00885427141819524,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.0059262178661649515,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 550,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 179.7,
|
||||
@@ -270,23 +288,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 250000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 8.854271418,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 511.72,
|
||||
"T_units": "K",
|
||||
"p": 4571200,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3820.000000000001,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 12107.59623891635,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 0.00592693841039708,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "Cyclopentane",
|
||||
"REFPROP_NAME": "CYCLOPEN"
|
||||
"REFPROP_NAME": "CYCLOPEN",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 511.72,
|
||||
"T_units": "K",
|
||||
"p": 4571200.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3820.0000000000005,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 179.7,
|
||||
"T_units": "K",
|
||||
"p": 0.00885427141819524,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 12107.608792031857,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 179.7,
|
||||
"T_units": "K",
|
||||
"p": 0.00885427141819524,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.0059262178661649515,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -110,14 +110,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "556-67-2",
|
||||
"CRITICAL": {
|
||||
"T": 586.5,
|
||||
"T_units": "K",
|
||||
"p": 1332000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 1030.928,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "UNKNOWN",
|
||||
"FH": -1,
|
||||
@@ -133,6 +125,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Colonna-FPE-2006",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 586.49127187,
|
||||
"T_units": "K",
|
||||
"p": 1332000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 1035.122310000001,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 290.25,
|
||||
"T_units": "K",
|
||||
"p": 0.06960923766877697,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3200.445098116998,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 290.25,
|
||||
"T_units": "K",
|
||||
"p": 0.06960923766877697,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.028853717844681662,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 673,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 290.25,
|
||||
@@ -244,23 +262,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 30000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 69.60923767,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 586.49127187,
|
||||
"T_units": "K",
|
||||
"p": 1332000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 1035.122310000001,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 3200.441443603881,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 0.02885594486307443,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "D4",
|
||||
"REFPROP_NAME": "D4"
|
||||
"REFPROP_NAME": "D4",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 586.5,
|
||||
"T_units": "K",
|
||||
"p": 1332000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 1030.928,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 290.25,
|
||||
"T_units": "K",
|
||||
"p": 0.06960923766877697,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3200.445098116998,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 290.25,
|
||||
"T_units": "K",
|
||||
"p": 0.06960923766877697,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.028853717844681662,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -110,14 +110,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "541-02-6",
|
||||
"CRITICAL": {
|
||||
"T": 619.15,
|
||||
"T_units": "K",
|
||||
"p": 1160000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 822.3684,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "UNKNOWN",
|
||||
"FH": -1,
|
||||
@@ -133,6 +125,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Colonna-FPE-2006",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 619.23462341,
|
||||
"T_units": "K",
|
||||
"p": 1161460,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 789.0902699999999,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 300.0,
|
||||
"T_units": "K",
|
||||
"p": 0.027511665281725335,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 2590.015134448574,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 300.0,
|
||||
"T_units": "K",
|
||||
"p": 0.027511665281725335,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.011031433967445782,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 673,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 226,
|
||||
@@ -244,23 +262,21 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 30000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 27.51166528,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 619.23462341,
|
||||
"T_units": "K",
|
||||
"p": 1161460,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 789.0902699999999,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 2.69709202235242e+99,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 2.69709202235242e+99,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "D5",
|
||||
"REFPROP_NAME": "D5"
|
||||
"REFPROP_NAME": "D5",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 619.15,
|
||||
"T_units": "K",
|
||||
"p": 1160000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 822.3684,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {},
|
||||
"triple_vapor": {}
|
||||
}
|
||||
}
|
||||
@@ -110,14 +110,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "540-97-6",
|
||||
"CRITICAL": {
|
||||
"T": 645.78,
|
||||
"T_units": "K",
|
||||
"p": 961000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 627.2885477999996,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "UNKNOWN",
|
||||
"FH": -1,
|
||||
@@ -133,6 +125,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Colonna-FPE-2008",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 645.78,
|
||||
"T_units": "K",
|
||||
"p": 961000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 627.2885477999996,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 270.2,
|
||||
"T_units": "K",
|
||||
"p": 0.00015975303819928407,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 2245.0762899076435,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 270.2,
|
||||
"T_units": "K",
|
||||
"p": 0.00015975303819928407,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 7.11098197032432e-05,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 673,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 270.2,
|
||||
@@ -235,23 +253,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 30000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 0.1597530382,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 645.78,
|
||||
"T_units": "K",
|
||||
"p": 961000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 627.2885477999996,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 2245.073821584233,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 7.111827573678096e-05,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "D6",
|
||||
"REFPROP_NAME": "D6"
|
||||
"REFPROP_NAME": "D6",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 645.78,
|
||||
"T_units": "K",
|
||||
"p": 961000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 627.2885477999996,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 270.2,
|
||||
"T_units": "K",
|
||||
"p": 0.00015975303819928407,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 2245.0762899076435,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 270.2,
|
||||
"T_units": "K",
|
||||
"p": 0.00015975303819928407,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 7.11098197032432e-05,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -122,14 +122,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "7782-39-0",
|
||||
"CRITICAL": {
|
||||
"T": 38.34,
|
||||
"T_units": "K",
|
||||
"p": 1679600.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 17230.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "UNKNOWN",
|
||||
"FH": -1,
|
||||
@@ -145,6 +137,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Richardson-JPCRD-2013",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 38.34,
|
||||
"T_units": "K",
|
||||
"p": 1679600,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 17230,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 18.724,
|
||||
"T_units": "K",
|
||||
"p": 17.1891019732537,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 43350.920890356414,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 18.724,
|
||||
"T_units": "K",
|
||||
"p": 17.1891019732537,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 112.95640342174914,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 600,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 18.724,
|
||||
@@ -334,23 +352,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 2000000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 17189.10197,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 38.34,
|
||||
"T_units": "K",
|
||||
"p": 1679600,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 17230,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 43350.35393172985,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 113.0018950964478,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "Deuterium",
|
||||
"REFPROP_NAME": "D2"
|
||||
"REFPROP_NAME": "D2",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 38.34,
|
||||
"T_units": "K",
|
||||
"p": 1679600.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 17230.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 18.724,
|
||||
"T_units": "K",
|
||||
"p": 17.1891019732537,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 43350.920890356414,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 18.724,
|
||||
"T_units": "K",
|
||||
"p": 17.1891019732537,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 112.95640342174914,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -111,14 +111,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "616-38-6",
|
||||
"CRITICAL": {
|
||||
"T": 557.0,
|
||||
"T_units": "K",
|
||||
"p": 4908800.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4000.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "UNKNOWN",
|
||||
"FH": 3,
|
||||
@@ -134,6 +126,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Zhou-JPCRD-2011",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 557,
|
||||
"T_units": "K",
|
||||
"p": 4908800,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4000,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 277.06,
|
||||
"T_units": "K",
|
||||
"p": 2.226523726360071,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 12111.201661172097,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 277.06,
|
||||
"T_units": "K",
|
||||
"p": 2.226523726360071,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.9680130259154924,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 600,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 277.06,
|
||||
@@ -292,23 +310,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 60000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 2226.523726,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 557,
|
||||
"T_units": "K",
|
||||
"p": 4908800,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4000,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 12111.18713006095,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 0.9680689047177409,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "DimethylCarbonate",
|
||||
"REFPROP_NAME": "DMC"
|
||||
"REFPROP_NAME": "DMC",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 557.0,
|
||||
"T_units": "K",
|
||||
"p": 4908800.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4000.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 277.06,
|
||||
"T_units": "K",
|
||||
"p": 2.226523726360071,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 12111.201661172097,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 277.06,
|
||||
"T_units": "K",
|
||||
"p": 2.226523726360071,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.9680130259154924,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -120,14 +120,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "115-10-6",
|
||||
"CRITICAL": {
|
||||
"T": 400.378,
|
||||
"T_units": "K",
|
||||
"p": 5336800.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 5940.000000000001,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "A3",
|
||||
"FH": 4,
|
||||
@@ -143,6 +135,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Wu-JPCRD-2011",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 400.378,
|
||||
"T_units": "K",
|
||||
"p": 5336800,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 5940.000000000001,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 131.66,
|
||||
"T_units": "K",
|
||||
"p": 0.0022107283172852626,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 19149.523468676703,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 131.66,
|
||||
"T_units": "K",
|
||||
"p": 0.0022107283172852626,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.0020195317198284978,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 550,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 131.66,
|
||||
@@ -283,25 +301,37 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 50000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 2.210728317,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 400.378,
|
||||
"T_units": "K",
|
||||
"p": 5336800,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 5940.000000000001,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 19149.49715074463,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 0.002019896781384355,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "DimethylEther",
|
||||
"REFPROP_NAME": "DME",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 400.378,
|
||||
"T_units": "K",
|
||||
"p": 5336800.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 5940.000000000001,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 131.66,
|
||||
"T_units": "K",
|
||||
"p": 0.0022107283172852626,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 19149.523468676703,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 131.66,
|
||||
"T_units": "K",
|
||||
"p": 0.0022107283172852626,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.0020195317198284978,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"TRANSPORT": {
|
||||
"viscosity": {
|
||||
"BibTeX": "Meng-JCED-2012",
|
||||
|
||||
@@ -4,6 +4,27 @@
|
||||
"ETHANE"
|
||||
],
|
||||
"ANCILLARIES": {
|
||||
"melting_line": {
|
||||
"BibTeX": "Buecker-JCRD-2006",
|
||||
"T_m": 90.4,
|
||||
"parts": [
|
||||
{
|
||||
"T_0": 90.368,
|
||||
"T_max": 110.2,
|
||||
"T_min": 90.368,
|
||||
"a": [
|
||||
223626315.0,
|
||||
105262374.0
|
||||
],
|
||||
"p_0": 1.14,
|
||||
"t": [
|
||||
1.0,
|
||||
2.55
|
||||
]
|
||||
}
|
||||
],
|
||||
"type": "polynomial_in_Tr"
|
||||
},
|
||||
"pL": {
|
||||
"T_r": 305.322,
|
||||
"Tmax": 305.3219999999994,
|
||||
@@ -123,14 +144,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "74-84-0",
|
||||
"CRITICAL": {
|
||||
"T": 305.322,
|
||||
"T_units": "K",
|
||||
"p": 4872200.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 6856.886685,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "A3",
|
||||
"FH": 4,
|
||||
@@ -146,6 +159,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Buecker-JPCRD-2006",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 305.322,
|
||||
"T_units": "K",
|
||||
"p": 4872200,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 6856.886685,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 90.368,
|
||||
"T_units": "K",
|
||||
"p": 0.0011421081151322327,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 21667.78455939388,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 90.368,
|
||||
"T_units": "K",
|
||||
"p": 0.0011421081151322327,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.0015200554552625017,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 675,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 90.368,
|
||||
@@ -411,25 +450,37 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 900000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 1.142108115,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 305.322,
|
||||
"T_units": "K",
|
||||
"p": 4872200,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 6856.886685,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 21667.74788890113,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 0.001520439053820902,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "Ethane",
|
||||
"REFPROP_NAME": "ETHANE",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 305.322,
|
||||
"T_units": "K",
|
||||
"p": 4872200.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 6856.886685,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 90.368,
|
||||
"T_units": "K",
|
||||
"p": 0.0011421081151322327,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 21667.78455939388,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 90.368,
|
||||
"T_units": "K",
|
||||
"p": 0.0011421081151322327,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.0015200554552625017,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"TRANSPORT": {
|
||||
"conductivity": {
|
||||
"BibTeX": "Friend-JPCRD-1991",
|
||||
|
||||
@@ -122,14 +122,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "64-17-5",
|
||||
"CRITICAL": {
|
||||
"T": 514.71,
|
||||
"T_units": "K",
|
||||
"p": 6268000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 5930.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "UNKNOWN",
|
||||
"FH": 3,
|
||||
@@ -145,6 +137,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Schroeder-MSTHESIS-2011",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 514.71,
|
||||
"T_units": "K",
|
||||
"p": 6268000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 5930,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 159.1,
|
||||
"T_units": "K",
|
||||
"p": 7.350470774723326e-07,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 19729.11257931593,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 159.1,
|
||||
"T_units": "K",
|
||||
"p": 7.350470774723326e-07,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 5.556614984609347e-07,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 650,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 159.1,
|
||||
@@ -346,25 +364,37 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 280000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 0.0007350470775,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 514.71,
|
||||
"T_units": "K",
|
||||
"p": 6268000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 5930,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 19729.08885611082,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 5.557847680758439e-07,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "Ethanol",
|
||||
"REFPROP_NAME": "ETHANOL",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 514.71,
|
||||
"T_units": "K",
|
||||
"p": 6268000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 5930.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 159.1,
|
||||
"T_units": "K",
|
||||
"p": 7.350470774723326e-07,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 19729.11257931593,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 159.1,
|
||||
"T_units": "K",
|
||||
"p": 7.350470774723326e-07,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 5.556614984609347e-07,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"TRANSPORT": {
|
||||
"conductivity": {
|
||||
"BibTeX": "Assael-JPCRD-2013-Ethanol",
|
||||
|
||||
@@ -110,18 +110,36 @@
|
||||
}
|
||||
},
|
||||
"CAS": "100-41-4",
|
||||
"CRITICAL": {
|
||||
"T": 617.12,
|
||||
"T_units": "K",
|
||||
"p": 3622400.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 2741.016,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"EOS": [
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Zhou-JPCRD-2012",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 617.12,
|
||||
"T_units": "K",
|
||||
"p": 3622400,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 2741.016,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 178.2,
|
||||
"T_units": "K",
|
||||
"p": 4.0029613919817915e-06,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 9123.245960497055,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 178.2,
|
||||
"T_units": "K",
|
||||
"p": 4.0029613919817915e-06,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 2.7017119098181417e-06,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 700,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 178.2,
|
||||
@@ -264,23 +282,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 60000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 0.004002961392,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 617.12,
|
||||
"T_units": "K",
|
||||
"p": 3622400,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 2741.016,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 9123.237141963473,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 2.702209571410398e-06,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "EthylBenzene",
|
||||
"REFPROP_NAME": "EBENZENE"
|
||||
"REFPROP_NAME": "EBENZENE",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 617.12,
|
||||
"T_units": "K",
|
||||
"p": 3622400.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 2741.016,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 178.2,
|
||||
"T_units": "K",
|
||||
"p": 4.0029613919817915e-06,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 9123.245960497055,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 178.2,
|
||||
"T_units": "K",
|
||||
"p": 4.0029613919817915e-06,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 2.7017119098181417e-06,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -4,6 +4,37 @@
|
||||
"ETHYLENE"
|
||||
],
|
||||
"ANCILLARIES": {
|
||||
"melting_line": {
|
||||
"BibTeX": "Smukala-JPCRD-2000",
|
||||
"T_m": 169,
|
||||
"parts": [
|
||||
{
|
||||
"T_0": 103.989,
|
||||
"T_max": 110.369,
|
||||
"T_min": 103.989,
|
||||
"a": [
|
||||
2947001.84
|
||||
],
|
||||
"p_0": 122.65,
|
||||
"t": [
|
||||
2.045
|
||||
]
|
||||
},
|
||||
{
|
||||
"T_0": 110.369,
|
||||
"T_max": 188,
|
||||
"T_min": 110.369,
|
||||
"a": [
|
||||
6.82693421
|
||||
],
|
||||
"p_0": 46800000.0,
|
||||
"t": [
|
||||
1.089
|
||||
]
|
||||
}
|
||||
],
|
||||
"type": "polynomial_in_Tr"
|
||||
},
|
||||
"pL": {
|
||||
"T_r": 282.35,
|
||||
"Tmax": 282.3499999999994,
|
||||
@@ -121,14 +152,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "74-85-1",
|
||||
"CRITICAL": {
|
||||
"T": 282.35,
|
||||
"T_units": "K",
|
||||
"p": 5041800.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 7636.76598074554,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "A3",
|
||||
"FH": 4,
|
||||
@@ -144,6 +167,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Smukala-JPCRD-2000",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 282.35,
|
||||
"T_units": "K",
|
||||
"p": 5041800,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 7636.76598074554,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 103.989,
|
||||
"T_units": "K",
|
||||
"p": 0.1220267638428971,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 23333.806692211565,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 103.989,
|
||||
"T_units": "K",
|
||||
"p": 0.1220267638428971,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.1411618295576975,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 450,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 103.989,
|
||||
@@ -373,23 +422,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 300000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 122.0267638,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 282.35,
|
||||
"T_units": "K",
|
||||
"p": 5041800,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 7636.76598074554,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 23333.76164627406,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 0.1411854791624635,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "Ethylene",
|
||||
"REFPROP_NAME": "ETHYLENE"
|
||||
"REFPROP_NAME": "ETHYLENE",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 282.35,
|
||||
"T_units": "K",
|
||||
"p": 5041800.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 7636.76598074554,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 103.989,
|
||||
"T_units": "K",
|
||||
"p": 0.1220267638428971,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 23333.806692211565,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 103.989,
|
||||
"T_units": "K",
|
||||
"p": 0.1220267638428971,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.1411618295576975,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -4,6 +4,25 @@
|
||||
"FLUORINE"
|
||||
],
|
||||
"ANCILLARIES": {
|
||||
"melting_line": {
|
||||
"BibTeX": "deReuck-BOOK-1990",
|
||||
"T_m": 53.15,
|
||||
"parts": [
|
||||
{
|
||||
"T_0": 53.4811,
|
||||
"T_max": 55.4,
|
||||
"T_min": 53.4811,
|
||||
"a": [
|
||||
988043.478261
|
||||
],
|
||||
"p_0": 252,
|
||||
"t": [
|
||||
2.1845
|
||||
]
|
||||
}
|
||||
],
|
||||
"type": "polynomial_in_Tr"
|
||||
},
|
||||
"pL": {
|
||||
"T_r": 144.414,
|
||||
"Tmax": 144.41399999999967,
|
||||
@@ -121,14 +140,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "7782-41-4",
|
||||
"CRITICAL": {
|
||||
"T": 144.414,
|
||||
"T_units": "K",
|
||||
"p": 5172400.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 15603.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "UNKNOWN",
|
||||
"FH": 3,
|
||||
@@ -144,6 +155,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "deReuck-BOOK-1990",
|
||||
"BibTeX_EOS": "deReuck-BOOK-1990",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 144.414,
|
||||
"T_units": "K",
|
||||
"p": 5172400,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 15603,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 53.4811,
|
||||
"T_units": "K",
|
||||
"p": 0.2388103329299759,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 44917.31036907297,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 53.4811,
|
||||
"T_units": "K",
|
||||
"p": 0.2388103329299759,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.537248503917467,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 300,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 53.4811,
|
||||
@@ -373,23 +410,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 20000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 238.8103329,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 144.414,
|
||||
"T_units": "K",
|
||||
"p": 5172400,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 15603,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 44917.13573008027,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 0.5374094722802236,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "Fluorine",
|
||||
"REFPROP_NAME": "FLUORINE"
|
||||
"REFPROP_NAME": "FLUORINE",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 144.414,
|
||||
"T_units": "K",
|
||||
"p": 5172400.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 15603.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 53.4811,
|
||||
"T_units": "K",
|
||||
"p": 0.2388103329299759,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 44917.31036907297,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 53.4811,
|
||||
"T_units": "K",
|
||||
"p": 0.2388103329299759,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.537248503917467,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -113,18 +113,36 @@
|
||||
}
|
||||
},
|
||||
"CAS": "421-14-7",
|
||||
"CRITICAL": {
|
||||
"T": 377.921,
|
||||
"T_units": "K",
|
||||
"p": 3635000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4648.140744,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"EOS": [
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Akasaka-IJR-2012",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 377.921,
|
||||
"T_units": "K",
|
||||
"p": 3635000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4648.140744,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 240.0,
|
||||
"T_units": "K",
|
||||
"p": 65.35939300696849,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 12615.354950558858,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 240.0,
|
||||
"T_units": "K",
|
||||
"p": 65.35939300696849,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 34.01804620551361,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 4220,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 240,
|
||||
@@ -256,23 +274,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 7200000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 65359.39301,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 377.921,
|
||||
"T_units": "K",
|
||||
"p": 3635000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4648.140744,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 12615.3284879174,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 34.01957819070063,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "HFE143m",
|
||||
"REFPROP_NAME": "RE143A"
|
||||
"REFPROP_NAME": "RE143A",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 377.921,
|
||||
"T_units": "K",
|
||||
"p": 3635000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4648.140744,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 240.0,
|
||||
"T_units": "K",
|
||||
"p": 65.35939300696849,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 12615.354950558858,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 240.0,
|
||||
"T_units": "K",
|
||||
"p": 65.35939300696849,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 34.01804620551361,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -5,6 +5,21 @@
|
||||
"He"
|
||||
],
|
||||
"ANCILLARIES": {
|
||||
"melting_line": {
|
||||
"BibTeX": "Datchi-PRB-2000",
|
||||
"T_m": 1.15,
|
||||
"parts": [
|
||||
{
|
||||
"T_0": 1,
|
||||
"T_max": 700,
|
||||
"T_min": 2.1768,
|
||||
"a": 1606700.0,
|
||||
"c": 1.565,
|
||||
"p_0": -1606700.0
|
||||
}
|
||||
],
|
||||
"type": "Simon"
|
||||
},
|
||||
"pL": {
|
||||
"T_r": 5.1953,
|
||||
"Tmax": 5.195299999999987,
|
||||
@@ -126,14 +141,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "7440-59-7",
|
||||
"CRITICAL": {
|
||||
"T": 5.1953,
|
||||
"T_units": "K",
|
||||
"p": 227600.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 18130.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "A1",
|
||||
"FH": 0,
|
||||
@@ -149,6 +156,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "OrtizVega-2010",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 5.1953,
|
||||
"T_units": "K",
|
||||
"p": 227600,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 17383.7,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 2.1768,
|
||||
"T_units": "K",
|
||||
"p": 5.04275718944867,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 36459.66840252621,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 2.1768,
|
||||
"T_units": "K",
|
||||
"p": 5.04275718944867,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 293.3016136659702,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 2000,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 2.1768,
|
||||
@@ -319,25 +352,37 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 1000000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 5042.757189,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 5.1953,
|
||||
"T_units": "K",
|
||||
"p": 227600,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 17383.7,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 36459.45454859136,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 293.9108313933456,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "Helium",
|
||||
"REFPROP_NAME": "HELIUM",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 5.1953,
|
||||
"T_units": "K",
|
||||
"p": 227600.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 18130.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 2.1768,
|
||||
"T_units": "K",
|
||||
"p": 5.04275718944867,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 36459.66840252621,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 2.1768,
|
||||
"T_units": "K",
|
||||
"p": 5.04275718944867,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 293.3016136659702,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"TRANSPORT": {
|
||||
"conductivity": {
|
||||
"BibTeX": "HANDS-CRYO-1981",
|
||||
|
||||
@@ -6,6 +6,21 @@
|
||||
"R702"
|
||||
],
|
||||
"ANCILLARIES": {
|
||||
"melting_line": {
|
||||
"BibTeX": "Datchi-PRB-2000",
|
||||
"T_m": 14.009985,
|
||||
"parts": [
|
||||
{
|
||||
"T_0": 1,
|
||||
"T_max": 700,
|
||||
"T_min": 13.957,
|
||||
"a": 231000.0,
|
||||
"c": 1.7627,
|
||||
"p_0": -236200.0
|
||||
}
|
||||
],
|
||||
"type": "Simon"
|
||||
},
|
||||
"pL": {
|
||||
"T_r": 33.145,
|
||||
"Tmax": 33.144999999999925,
|
||||
@@ -127,14 +142,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "1333-74-0",
|
||||
"CRITICAL": {
|
||||
"T": 33.145,
|
||||
"T_units": "K",
|
||||
"p": 1296400.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 15508.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "A3",
|
||||
"FH": 4,
|
||||
@@ -150,6 +157,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Leachman-JPCRD-2009",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 33.145,
|
||||
"T_units": "K",
|
||||
"p": 1296400,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 15508,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 13.957,
|
||||
"T_units": "K",
|
||||
"p": 7.357828141690358,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 38198.54161031631,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 13.957,
|
||||
"T_units": "K",
|
||||
"p": 7.357828141690358,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 64.41526917350258,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 1000,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 13.957,
|
||||
@@ -291,25 +324,37 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 2000000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 7357.828142,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 33.145,
|
||||
"T_units": "K",
|
||||
"p": 1296400,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 15508,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 38198.13818258921,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 64.44810198985165,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "Hydrogen",
|
||||
"REFPROP_NAME": "HYDROGEN",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 33.145,
|
||||
"T_units": "K",
|
||||
"p": 1296400.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 15508.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 13.957,
|
||||
"T_units": "K",
|
||||
"p": 7.357828141690358,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 38198.54161031631,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 13.957,
|
||||
"T_units": "K",
|
||||
"p": 7.357828141690358,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 64.41526917350258,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"TRANSPORT": {
|
||||
"conductivity": {
|
||||
"BibTeX": "Assael-JPCRD-2011-Hydrogen",
|
||||
|
||||
@@ -121,14 +121,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "7783-06-4",
|
||||
"CRITICAL": {
|
||||
"T": 373.1,
|
||||
"T_units": "K",
|
||||
"p": 9000000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 10190.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "UNKNOWN",
|
||||
"FH": 4,
|
||||
@@ -144,6 +136,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Lemmon-JCED-2006",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 373.1,
|
||||
"T_units": "K",
|
||||
"p": 9000000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 10190,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 187.7,
|
||||
"T_units": "K",
|
||||
"p": 23.258855840736683,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 29116.326840626763,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 187.7,
|
||||
"T_units": "K",
|
||||
"p": 23.258855840736683,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 15.024228571877876,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 760,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 187.7,
|
||||
@@ -248,25 +266,37 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 170000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 23258.85584,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 373.1,
|
||||
"T_units": "K",
|
||||
"p": 9000000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 10190,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 29116.27758075055,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 15.02516830469272,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "HydrogenSulfide",
|
||||
"REFPROP_NAME": "H2S",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 373.1,
|
||||
"T_units": "K",
|
||||
"p": 9000000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 10190.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 187.7,
|
||||
"T_units": "K",
|
||||
"p": 23.258855840736683,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 29116.326840626763,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 187.7,
|
||||
"T_units": "K",
|
||||
"p": 23.258855840736683,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 15.024228571877876,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"TRANSPORT": {
|
||||
"viscosity": {
|
||||
"BibTeX": "QuinonesCisneros-JCED-2012",
|
||||
|
||||
@@ -7,6 +7,25 @@
|
||||
"R600a"
|
||||
],
|
||||
"ANCILLARIES": {
|
||||
"melting_line": {
|
||||
"BibTeX": "Buecker-JPCRD-2006B",
|
||||
"T_m": 113.55,
|
||||
"parts": [
|
||||
{
|
||||
"T_0": 113.73,
|
||||
"T_max": 124.9,
|
||||
"T_min": 113.73,
|
||||
"a": [
|
||||
1953637130.9
|
||||
],
|
||||
"p_0": 0.0219,
|
||||
"t": [
|
||||
6.12
|
||||
]
|
||||
}
|
||||
],
|
||||
"type": "polynomial_in_Tr"
|
||||
},
|
||||
"pL": {
|
||||
"T_r": 407.817,
|
||||
"Tmax": 407.81699999999915,
|
||||
@@ -126,14 +145,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "75-28-5",
|
||||
"CRITICAL": {
|
||||
"T": 407.817,
|
||||
"T_units": "K",
|
||||
"p": 3629000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3879.756788283995,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "UNKNOWN",
|
||||
"FH": 4,
|
||||
@@ -149,6 +160,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Buecker-JPCRD-2006B",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 407.81,
|
||||
"T_units": "K",
|
||||
"p": 3629000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3879.756788283995,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 113.73,
|
||||
"T_units": "K",
|
||||
"p": 2.2879446966082075e-05,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 12737.656182433244,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 113.73,
|
||||
"T_units": "K",
|
||||
"p": 2.2879446966082075e-05,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 2.4195571571567102e-05,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 575,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 113.73,
|
||||
@@ -329,25 +366,37 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 35000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 0.02287944697,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 407.81,
|
||||
"T_units": "K",
|
||||
"p": 3629000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3879.756788283995,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 12737.63993166686,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 2.420164552028876e-05,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "IsoButane",
|
||||
"REFPROP_NAME": "ISOBUTAN",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 407.817,
|
||||
"T_units": "K",
|
||||
"p": 3629000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3879.756788283995,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 113.73,
|
||||
"T_units": "K",
|
||||
"p": 2.2879446966082075e-05,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 12737.656182433244,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 113.73,
|
||||
"T_units": "K",
|
||||
"p": 2.2879446966082075e-05,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 2.4195571571567102e-05,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"TRANSPORT": {
|
||||
"conductivity": {
|
||||
"BibTeX": "Perkins-JCED-2002-Isobutane",
|
||||
|
||||
@@ -121,14 +121,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "115-11-7",
|
||||
"CRITICAL": {
|
||||
"T": 418.09,
|
||||
"T_units": "K",
|
||||
"p": 4009800.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4170.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "UNKNOWN",
|
||||
"FH": 4,
|
||||
@@ -144,6 +136,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Lemmon-FPE-2005",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 418.09,
|
||||
"T_units": "K",
|
||||
"p": 4009800,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4170,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 132.4,
|
||||
"T_units": "K",
|
||||
"p": 0.0006761899732718035,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 13666.751920875638,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 132.4,
|
||||
"T_units": "K",
|
||||
"p": 0.0006761899732718035,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.0006142550272163055,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 525,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 132.4,
|
||||
@@ -243,23 +261,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 50000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 0.6761899733,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 418.09,
|
||||
"T_units": "K",
|
||||
"p": 4009800,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4170,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 13666.73347813296,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 0.0006143704326081906,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "IsoButene",
|
||||
"REFPROP_NAME": "IBUTENE"
|
||||
"REFPROP_NAME": "IBUTENE",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 418.09,
|
||||
"T_units": "K",
|
||||
"p": 4009800.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4170.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 132.4,
|
||||
"T_units": "K",
|
||||
"p": 0.0006761899732718035,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 13666.751920875638,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 132.4,
|
||||
"T_units": "K",
|
||||
"p": 0.0006761899732718035,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.0006142550272163055,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -121,14 +121,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "107-83-5",
|
||||
"CRITICAL": {
|
||||
"T": 497.7,
|
||||
"T_units": "K",
|
||||
"p": 3040000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 2715.0000000000005,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "UNKNOWN",
|
||||
"FH": 3,
|
||||
@@ -144,6 +136,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Lemmon-JCED-2006",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 497.7,
|
||||
"T_units": "K",
|
||||
"p": 3040000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 2715.000000000001,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 119.6,
|
||||
"T_units": "K",
|
||||
"p": 7.673974446178324e-09,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 9370.782450632156,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 119.6,
|
||||
"T_units": "K",
|
||||
"p": 7.673974446178324e-09,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 7.71710650450467e-09,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 500,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 119.6,
|
||||
@@ -243,23 +261,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 1000000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 7.673974446e-06,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 497.7,
|
||||
"T_units": "K",
|
||||
"p": 3040000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 2715.000000000001,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 9370.770983488099,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 7.71968171674387e-09,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "Isohexane",
|
||||
"REFPROP_NAME": "IHEXANE"
|
||||
"REFPROP_NAME": "IHEXANE",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 497.7,
|
||||
"T_units": "K",
|
||||
"p": 3040000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 2715.0000000000005,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 119.6,
|
||||
"T_units": "K",
|
||||
"p": 7.673974446178324e-09,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 9370.782450632156,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 119.6,
|
||||
"T_units": "K",
|
||||
"p": 7.673974446178324e-09,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 7.71710650450467e-09,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -5,6 +5,21 @@
|
||||
"ISOPENTANE"
|
||||
],
|
||||
"ANCILLARIES": {
|
||||
"melting_line": {
|
||||
"BibTeX": "Reeves-JCP-1964",
|
||||
"T_m": 113.22999999999999,
|
||||
"parts": [
|
||||
{
|
||||
"T_0": 112.5,
|
||||
"T_max": 212.16,
|
||||
"T_min": 112.65,
|
||||
"a": 591600000.0,
|
||||
"c": 1.563,
|
||||
"p_0": 0
|
||||
}
|
||||
],
|
||||
"type": "Simon"
|
||||
},
|
||||
"pL": {
|
||||
"T_r": 460.35,
|
||||
"Tmax": 460.3499999999989,
|
||||
@@ -122,14 +137,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "78-78-4",
|
||||
"CRITICAL": {
|
||||
"T": 460.35,
|
||||
"T_units": "K",
|
||||
"p": 3378000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3271.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "A3",
|
||||
"FH": 4,
|
||||
@@ -145,6 +152,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Lemmon-JCED-2006",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 460.35,
|
||||
"T_units": "K",
|
||||
"p": 3378000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3271,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 112.65,
|
||||
"T_units": "K",
|
||||
"p": 8.952745179434145e-08,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 10935.8893141883,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 112.65,
|
||||
"T_units": "K",
|
||||
"p": 8.952745179434145e-08,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 9.558513393991809e-08,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 500,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 112.65,
|
||||
@@ -244,23 +277,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 1000000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 8.952745179e-05,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 460.35,
|
||||
"T_units": "K",
|
||||
"p": 3378000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3271,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 10935.8752298512,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 9.561583001422481e-08,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "Isopentane",
|
||||
"REFPROP_NAME": "IPENTANE"
|
||||
"REFPROP_NAME": "IPENTANE",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 460.35,
|
||||
"T_units": "K",
|
||||
"p": 3378000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3271.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 112.65,
|
||||
"T_units": "K",
|
||||
"p": 8.952745179434145e-08,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 10935.8893141883,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 112.65,
|
||||
"T_units": "K",
|
||||
"p": 8.952745179434145e-08,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 9.558513393991809e-08,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -4,6 +4,21 @@
|
||||
"KRYPTON"
|
||||
],
|
||||
"ANCILLARIES": {
|
||||
"melting_line": {
|
||||
"BibTeX": "Michels-PHYSICA-1962",
|
||||
"T_m": 115.95,
|
||||
"parts": [
|
||||
{
|
||||
"T_0": 1,
|
||||
"T_max": 168.7,
|
||||
"T_min": 115.77,
|
||||
"a": 109479.2307,
|
||||
"c": 1.6169841,
|
||||
"p_0": -237497645.7
|
||||
}
|
||||
],
|
||||
"type": "Simon"
|
||||
},
|
||||
"pL": {
|
||||
"T_r": 209.48,
|
||||
"Tmax": 209.4799999999995,
|
||||
@@ -121,14 +136,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "7439-90-9",
|
||||
"CRITICAL": {
|
||||
"T": 209.48,
|
||||
"T_units": "K",
|
||||
"p": 5525000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 10850.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "UNKNOWN",
|
||||
"FH": 0,
|
||||
@@ -144,6 +151,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Lemmon-JCED-2006",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 209.48,
|
||||
"T_units": "K",
|
||||
"p": 5525000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 10850,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 115.77,
|
||||
"T_units": "K",
|
||||
"p": 73.502837475028,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 29197.32240678559,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 115.77,
|
||||
"T_units": "K",
|
||||
"p": 73.502837475028,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 78.4175234091632,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 750,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 115.77,
|
||||
@@ -228,23 +261,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 200000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 73502.83748,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 209.48,
|
||||
"T_units": "K",
|
||||
"p": 5525000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 10850,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 29197.23261176175,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 78.42355224696817,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "Krypton",
|
||||
"REFPROP_NAME": "KRYPTON"
|
||||
"REFPROP_NAME": "KRYPTON",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 209.48,
|
||||
"T_units": "K",
|
||||
"p": 5525000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 10850.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 115.77,
|
||||
"T_units": "K",
|
||||
"p": 73.502837475028,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 29197.32240678559,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 115.77,
|
||||
"T_units": "K",
|
||||
"p": 73.502837475028,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 78.4175234091632,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -110,14 +110,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "141-62-8",
|
||||
"CRITICAL": {
|
||||
"T": 599.4,
|
||||
"T_units": "K",
|
||||
"p": 1227000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 914.6616014999984,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "UNKNOWN",
|
||||
"FH": 2,
|
||||
@@ -133,6 +125,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Colonna-FPE-2008",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 599.4,
|
||||
"T_units": "K",
|
||||
"p": 1227000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 914.6616014999984,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 205.2,
|
||||
"T_units": "K",
|
||||
"p": 4.7950993795487e-07,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3032.1188560391715,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 205.2,
|
||||
"T_units": "K",
|
||||
"p": 4.7950993795487e-07,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 2.810512915459994e-07,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 673,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 205.2,
|
||||
@@ -235,23 +253,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 30000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 0.000479509938,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 599.4,
|
||||
"T_units": "K",
|
||||
"p": 1227000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 914.6616014999984,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 3032.115488664193,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 2.811052609114695e-07,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "MD2M",
|
||||
"REFPROP_NAME": "MD2M"
|
||||
"REFPROP_NAME": "MD2M",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 599.4,
|
||||
"T_units": "K",
|
||||
"p": 1227000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 914.6616014999984,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 205.2,
|
||||
"T_units": "K",
|
||||
"p": 4.7950993795487e-07,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3032.1188560391715,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 205.2,
|
||||
"T_units": "K",
|
||||
"p": 4.7950993795487e-07,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 2.810512915459994e-07,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -110,14 +110,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "141-63-9",
|
||||
"CRITICAL": {
|
||||
"T": 628.36,
|
||||
"T_units": "K",
|
||||
"p": 945000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 685.7981626999992,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "UNKNOWN",
|
||||
"FH": 2,
|
||||
@@ -133,6 +125,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Colonna-FPE-2008",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 628.36,
|
||||
"T_units": "K",
|
||||
"p": 945000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 685.7981626999992,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 192.0,
|
||||
"T_units": "K",
|
||||
"p": 2.057747643530664e-10,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 2541.798960773628,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 192.0,
|
||||
"T_units": "K",
|
||||
"p": 2.057747643530664e-10,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 1.2890097703756894e-10,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 673,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 192,
|
||||
@@ -235,23 +253,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 30000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 2.057747644e-07,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 628.36,
|
||||
"T_units": "K",
|
||||
"p": 945000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 685.7981626999992,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 2541.796114376564,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 1.289360613297565e-10,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "MD3M",
|
||||
"REFPROP_NAME": "MD3M"
|
||||
"REFPROP_NAME": "MD3M",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 628.36,
|
||||
"T_units": "K",
|
||||
"p": 945000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 685.7981626999992,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 192.0,
|
||||
"T_units": "K",
|
||||
"p": 2.057747643530664e-10,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 2541.798960773628,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 192.0,
|
||||
"T_units": "K",
|
||||
"p": 2.057747643530664e-10,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 1.2890097703756894e-10,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -110,18 +110,36 @@
|
||||
}
|
||||
},
|
||||
"CAS": "107-52-8",
|
||||
"CRITICAL": {
|
||||
"T": 653.2,
|
||||
"T_units": "K",
|
||||
"p": 877000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 606.0605999999999,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"EOS": [
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Colonna-FPE-2006",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 653.2,
|
||||
"T_units": "K",
|
||||
"p": 877470,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 622.3569399999996,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 300.0,
|
||||
"T_units": "K",
|
||||
"p": 0.001093376953540781,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 1914.3670674385771,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 300.0,
|
||||
"T_units": "K",
|
||||
"p": 0.001093376953540781,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.00043834773801798706,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 673,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 214.15,
|
||||
@@ -227,23 +245,21 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 30000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 1.093376954,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 653.2,
|
||||
"T_units": "K",
|
||||
"p": 877470,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 622.3569399999996,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 2.178681134503756e+99,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 2.178681134503756e+99,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "MD4M",
|
||||
"REFPROP_NAME": "MD4M"
|
||||
"REFPROP_NAME": "MD4M",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 653.2,
|
||||
"T_units": "K",
|
||||
"p": 877000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 606.0605999999999,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {},
|
||||
"triple_vapor": {}
|
||||
}
|
||||
}
|
||||
@@ -110,14 +110,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "107-51-7",
|
||||
"CRITICAL": {
|
||||
"T": 564.09,
|
||||
"T_units": "K",
|
||||
"p": 1415000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 1085.436621399999,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "UNKNOWN",
|
||||
"FH": 2,
|
||||
@@ -133,6 +125,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Colonna-FPE-2008",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 564.09,
|
||||
"T_units": "K",
|
||||
"p": 1415000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 1085.436621399999,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 187.2,
|
||||
"T_units": "K",
|
||||
"p": 7.991110509185762e-07,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3930.8232636425755,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 187.2,
|
||||
"T_units": "K",
|
||||
"p": 7.991110509185762e-07,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 5.134127178430179e-07,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 673,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 187.2,
|
||||
@@ -235,23 +253,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 30000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 0.0007991110509,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 564.09,
|
||||
"T_units": "K",
|
||||
"p": 1415000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 1085.436621399999,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 3930.818760661736,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 5.135191499435775e-07,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "MDM",
|
||||
"REFPROP_NAME": "MDM"
|
||||
"REFPROP_NAME": "MDM",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 564.09,
|
||||
"T_units": "K",
|
||||
"p": 1415000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 1085.436621399999,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 187.2,
|
||||
"T_units": "K",
|
||||
"p": 7.991110509185762e-07,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3930.8232636425755,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 187.2,
|
||||
"T_units": "K",
|
||||
"p": 7.991110509185762e-07,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 5.134127178430179e-07,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -110,14 +110,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "107-46-0",
|
||||
"CRITICAL": {
|
||||
"T": 518.75,
|
||||
"T_units": "K",
|
||||
"p": 1939000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 1589.825,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "UNKNOWN",
|
||||
"FH": 3,
|
||||
@@ -133,6 +125,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Colonna-FPE-2006",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 518.69997204,
|
||||
"T_units": "K",
|
||||
"p": 1939390,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 1874.67076,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 273.0,
|
||||
"T_units": "K",
|
||||
"p": 1.316986383534492,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4817.682589392576,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 273.0,
|
||||
"T_units": "K",
|
||||
"p": 1.316986383534492,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.5820069274508293,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 673,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 204.93,
|
||||
@@ -244,23 +262,21 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 30000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 1316.986384,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 518.69997204,
|
||||
"T_units": "K",
|
||||
"p": 1939390,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 1874.67076,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 6.158487948331765e+99,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 6.158487948331765e+99,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "MM",
|
||||
"REFPROP_NAME": "MM"
|
||||
"REFPROP_NAME": "MM",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 518.75,
|
||||
"T_units": "K",
|
||||
"p": 1939000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 1589.825,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {},
|
||||
"triple_vapor": {}
|
||||
}
|
||||
}
|
||||
@@ -5,6 +5,21 @@
|
||||
"METHANE"
|
||||
],
|
||||
"ANCILLARIES": {
|
||||
"melting_line": {
|
||||
"BibTeX": "Abramson-HPR-2011",
|
||||
"T_m": 90.7,
|
||||
"parts": [
|
||||
{
|
||||
"T_0": 90.6941,
|
||||
"T_max": 600,
|
||||
"T_min": 90.6941,
|
||||
"a": 208000000.0,
|
||||
"c": 1.698,
|
||||
"p_0": 11700.0
|
||||
}
|
||||
],
|
||||
"type": "Simon"
|
||||
},
|
||||
"pL": {
|
||||
"T_r": 190.564,
|
||||
"Tmax": 190.56399999999954,
|
||||
@@ -126,14 +141,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "74-82-8",
|
||||
"CRITICAL": {
|
||||
"T": 190.564,
|
||||
"T_units": "K",
|
||||
"p": 4599200.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 10139.127999999999,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "A3",
|
||||
"FH": 4,
|
||||
@@ -149,6 +156,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Setzmann-JPCRD-1991",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 190.564,
|
||||
"T_units": "K",
|
||||
"p": 4599200,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 10139.128,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 90.6941,
|
||||
"T_units": "K",
|
||||
"p": 11.696064115134503,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 28141.91479265917,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 90.6941,
|
||||
"T_units": "K",
|
||||
"p": 11.696064115134503,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 15.62969180971744,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 625,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 90.6941,
|
||||
@@ -397,23 +430,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 1000000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 11696.06412,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 190.564,
|
||||
"T_units": "K",
|
||||
"p": 4599200,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 10139.128,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 28141.83192295947,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 15.63154286998348,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "Methane",
|
||||
"REFPROP_NAME": "METHANE"
|
||||
"REFPROP_NAME": "METHANE",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 190.564,
|
||||
"T_units": "K",
|
||||
"p": 4599200.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 10139.127999999999,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 90.6941,
|
||||
"T_units": "K",
|
||||
"p": 11.696064115134503,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 28141.91479265917,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 90.6941,
|
||||
"T_units": "K",
|
||||
"p": 11.696064115134503,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 15.62969180971744,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -4,6 +4,29 @@
|
||||
"METHANOL"
|
||||
],
|
||||
"ANCILLARIES": {
|
||||
"melting_line": {
|
||||
"BibTeX": "deReuck-BOOK-1993",
|
||||
"T_m": 337.8,
|
||||
"parts": [
|
||||
{
|
||||
"T_0": 175.61,
|
||||
"T_max": 245.9,
|
||||
"T_min": 175.61,
|
||||
"a": [
|
||||
5330770000.0,
|
||||
4524780000.0,
|
||||
38888610000.0
|
||||
],
|
||||
"p_0": 0.187,
|
||||
"t": [
|
||||
1,
|
||||
1.5,
|
||||
4
|
||||
]
|
||||
}
|
||||
],
|
||||
"type": "polynomial_in_Theta"
|
||||
},
|
||||
"pL": {
|
||||
"T_r": 512.5,
|
||||
"Tmax": 512.4999999999987,
|
||||
@@ -125,14 +148,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "67-56-1",
|
||||
"CRITICAL": {
|
||||
"T": 512.5,
|
||||
"T_units": "K",
|
||||
"p": 8215850.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 8520.024867237415,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "UNKNOWN",
|
||||
"FH": 3,
|
||||
@@ -148,6 +163,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Piazza-FPE-2013",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 512.5,
|
||||
"T_units": "K",
|
||||
"p": 8215850,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 8520.024867237415,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 175.61,
|
||||
"T_units": "K",
|
||||
"p": 0.0001867637574117855,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 28227.37433284738,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 175.61,
|
||||
"T_units": "K",
|
||||
"p": 0.0001867637574117855,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.0001279343965397924,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 580,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 175.61,
|
||||
@@ -292,23 +333,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 500000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 0.1867637574,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 512.5,
|
||||
"T_units": "K",
|
||||
"p": 8215850,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 8520.024867237415,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 28227.34381723926,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 0.0001279546715210285,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "Methanol",
|
||||
"REFPROP_NAME": "METHANOL"
|
||||
"REFPROP_NAME": "METHANOL",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 512.5,
|
||||
"T_units": "K",
|
||||
"p": 8215850.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 8520.024867237415,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 175.61,
|
||||
"T_units": "K",
|
||||
"p": 0.0001867637574117855,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 28227.37433284738,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 175.61,
|
||||
"T_units": "K",
|
||||
"p": 0.0001867637574117855,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.0001279343965397924,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -109,14 +109,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "112-63-0",
|
||||
"CRITICAL": {
|
||||
"T": 799.0,
|
||||
"T_units": "K",
|
||||
"p": 1341000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 808.4,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "UNKNOWN",
|
||||
"FH": -1,
|
||||
@@ -132,6 +124,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Huber-EF-2009",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 799,
|
||||
"T_units": "K",
|
||||
"p": 1341000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 808.4,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 260.0,
|
||||
"T_units": "K",
|
||||
"p": 1.3717048086741424e-09,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3092.919060951427,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 260.0,
|
||||
"T_units": "K",
|
||||
"p": 1.3717048086741424e-09,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 6.345306984937442e-10,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 700,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 238.1,
|
||||
@@ -272,23 +290,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 50000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 7.719884129e-09,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 799,
|
||||
"T_units": "K",
|
||||
"p": 1341000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 808.4,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 3153.235854714205,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 3.900590310452233e-12,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "MethylLinoleate",
|
||||
"REFPROP_NAME": "MLINOLEA"
|
||||
"REFPROP_NAME": "MLINOLEA",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 799.0,
|
||||
"T_units": "K",
|
||||
"p": 1341000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 808.4,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 260.0,
|
||||
"T_units": "K",
|
||||
"p": 1.3717048086741424e-09,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3092.919060951427,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 260.0,
|
||||
"T_units": "K",
|
||||
"p": 1.3717048086741424e-09,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 6.345306984937442e-10,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -109,14 +109,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "301-00-8",
|
||||
"CRITICAL": {
|
||||
"T": 772.0,
|
||||
"T_units": "K",
|
||||
"p": 1369000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 847.3000000000001,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "UNKNOWN",
|
||||
"FH": -1,
|
||||
@@ -132,6 +124,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Huber-EF-2009",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 772,
|
||||
"T_units": "K",
|
||||
"p": 1369000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 847.3000000000001,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 260.0,
|
||||
"T_units": "K",
|
||||
"p": 4.250280354778991e-10,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3162.072727020763,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 260.0,
|
||||
"T_units": "K",
|
||||
"p": 4.250280354778991e-10,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 1.9661178886570436e-10,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 700,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 218.65,
|
||||
@@ -276,23 +294,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 50000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 8.281383742e-12,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 772,
|
||||
"T_units": "K",
|
||||
"p": 1369000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 847.3000000000001,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 3281.983110581293,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 4.556783070257036e-15,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "MethylLinolenate",
|
||||
"REFPROP_NAME": "MLINOLEN"
|
||||
"REFPROP_NAME": "MLINOLEN",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 772.0,
|
||||
"T_units": "K",
|
||||
"p": 1369000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 847.3000000000001,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 260.0,
|
||||
"T_units": "K",
|
||||
"p": 4.250280354778991e-10,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3162.072727020763,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 260.0,
|
||||
"T_units": "K",
|
||||
"p": 4.250280354778991e-10,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 1.9661178886570436e-10,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -109,14 +109,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "112-62-9",
|
||||
"CRITICAL": {
|
||||
"T": 782.0,
|
||||
"T_units": "K",
|
||||
"p": 1246000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 812.8499999999999,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "UNKNOWN",
|
||||
"FH": 1,
|
||||
@@ -132,6 +124,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Huber-EF-2009",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 782,
|
||||
"T_units": "K",
|
||||
"p": 1246000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 812.8499999999999,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 253.47,
|
||||
"T_units": "K",
|
||||
"p": 3.7818661051540565e-10,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3048.2387941791717,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 253.47,
|
||||
"T_units": "K",
|
||||
"p": 3.7818661051540565e-10,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 1.79450597579303e-10,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 700,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 253.47,
|
||||
@@ -276,23 +294,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 50000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 3.781866105e-07,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 782,
|
||||
"T_units": "K",
|
||||
"p": 1246000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 812.8499999999999,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 3048.236151846261,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 1.794893849114351e-10,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "MethylOleate",
|
||||
"REFPROP_NAME": "MOLEATE"
|
||||
"REFPROP_NAME": "MOLEATE",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 782.0,
|
||||
"T_units": "K",
|
||||
"p": 1246000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 812.8499999999999,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 253.47,
|
||||
"T_units": "K",
|
||||
"p": 3.7818661051540565e-10,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3048.2387941791717,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 253.47,
|
||||
"T_units": "K",
|
||||
"p": 3.7818661051540565e-10,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 1.79450597579303e-10,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -109,14 +109,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "112-39-0",
|
||||
"CRITICAL": {
|
||||
"T": 755.0,
|
||||
"T_units": "K",
|
||||
"p": 1350000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 897.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "UNKNOWN",
|
||||
"FH": 0,
|
||||
@@ -132,6 +124,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Huber-EF-2009",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 755,
|
||||
"T_units": "K",
|
||||
"p": 1350000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 897,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 302.71,
|
||||
"T_units": "K",
|
||||
"p": 1.6401286519191667e-05,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3181.442539250496,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 302.71,
|
||||
"T_units": "K",
|
||||
"p": 1.6401286519191667e-05,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 6.516532510861514e-06,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 700,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 302.71,
|
||||
@@ -276,23 +294,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 50000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 0.01640128652,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 755,
|
||||
"T_units": "K",
|
||||
"p": 1350000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 897,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 3181.439786123884,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 6.517312696695113e-06,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "MethylPalmitate",
|
||||
"REFPROP_NAME": "MPALMITA"
|
||||
"REFPROP_NAME": "MPALMITA",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 755.0,
|
||||
"T_units": "K",
|
||||
"p": 1350000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 897.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 302.71,
|
||||
"T_units": "K",
|
||||
"p": 1.6401286519191667e-05,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3181.442539250496,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 302.71,
|
||||
"T_units": "K",
|
||||
"p": 1.6401286519191667e-05,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 6.516532510861514e-06,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -109,14 +109,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "112-61-8",
|
||||
"CRITICAL": {
|
||||
"T": 775.0,
|
||||
"T_units": "K",
|
||||
"p": 1239000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 794.3,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "UNKNOWN",
|
||||
"FH": 1,
|
||||
@@ -132,6 +124,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Huber-EF-2009",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 775,
|
||||
"T_units": "K",
|
||||
"p": 1239000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 794.3,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 311.84,
|
||||
"T_units": "K",
|
||||
"p": 6.0109471888446706e-06,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 2851.4327320670277,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 311.84,
|
||||
"T_units": "K",
|
||||
"p": 6.0109471888446706e-06,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 2.3183363928545357e-06,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 700,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 311.84,
|
||||
@@ -276,23 +294,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 50000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 0.006010947189,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 775,
|
||||
"T_units": "K",
|
||||
"p": 1239000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 794.3,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 2851.430203644649,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 2.318621202355879e-06,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "MethylStearate",
|
||||
"REFPROP_NAME": "MSTEARAT"
|
||||
"REFPROP_NAME": "MSTEARAT",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 775.0,
|
||||
"T_units": "K",
|
||||
"p": 1239000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 794.3,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 311.84,
|
||||
"T_units": "K",
|
||||
"p": 6.0109471888446706e-06,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 2851.4327320670277,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 311.84,
|
||||
"T_units": "K",
|
||||
"p": 6.0109471888446706e-06,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 2.3183363928545357e-06,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -4,6 +4,21 @@
|
||||
"NEON"
|
||||
],
|
||||
"ANCILLARIES": {
|
||||
"melting_line": {
|
||||
"BibTeX": "SantamariaPerez-PRB-2010",
|
||||
"T_m": -1,
|
||||
"parts": [
|
||||
{
|
||||
"T_0": 24.4,
|
||||
"T_max": 700,
|
||||
"T_min": 24.56,
|
||||
"a": 1700000000.0,
|
||||
"c": 1.2987012987012987,
|
||||
"p_0": 101325
|
||||
}
|
||||
],
|
||||
"type": "Simon"
|
||||
},
|
||||
"pL": {
|
||||
"T_r": 44.4918,
|
||||
"Tmax": 44.49179999999988,
|
||||
@@ -125,14 +140,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "7440-01-9",
|
||||
"CRITICAL": {
|
||||
"T": 44.4918,
|
||||
"T_units": "K",
|
||||
"p": 2680000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 23882.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "A1",
|
||||
"FH": 0,
|
||||
@@ -148,6 +155,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Katti-ACE-1986",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 44.4918,
|
||||
"T_units": "K",
|
||||
"p": 2680000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 23882,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 24.56,
|
||||
"T_units": "K",
|
||||
"p": 43.432076403077566,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 62061.106062436906,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 24.56,
|
||||
"T_units": "K",
|
||||
"p": 43.432076403077566,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 220.1097622314587,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 723,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 24.56,
|
||||
@@ -306,23 +339,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 700000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 43432.0764,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 44.4918,
|
||||
"T_units": "K",
|
||||
"p": 2680000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 23882,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 62060.12963247318,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 220.1827660676654,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "Neon",
|
||||
"REFPROP_NAME": "NEON"
|
||||
"REFPROP_NAME": "NEON",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 44.4918,
|
||||
"T_units": "K",
|
||||
"p": 2680000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 23882.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 24.56,
|
||||
"T_units": "K",
|
||||
"p": 43.432076403077566,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 62061.106062436906,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 24.56,
|
||||
"T_units": "K",
|
||||
"p": 43.432076403077566,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 220.1097622314587,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -110,14 +110,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "463-82-1",
|
||||
"CRITICAL": {
|
||||
"T": 433.74,
|
||||
"T_units": "K",
|
||||
"p": 3196000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3270.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "UNKNOWN",
|
||||
"FH": 4,
|
||||
@@ -133,6 +125,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Lemmon-JCED-2006",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 433.74,
|
||||
"T_units": "K",
|
||||
"p": 3196000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3270,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 256.6,
|
||||
"T_units": "K",
|
||||
"p": 35.40094732708782,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 8701.720394850296,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 256.6,
|
||||
"T_units": "K",
|
||||
"p": 35.40094732708782,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 16.951063913080816,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 550,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 256.6,
|
||||
@@ -232,23 +250,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 200000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 35400.94733,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 433.74,
|
||||
"T_units": "K",
|
||||
"p": 3196000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3270,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 8701.706626683947,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 16.95177504859362,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "Neopentane",
|
||||
"REFPROP_NAME": "NEOPENTN"
|
||||
"REFPROP_NAME": "NEOPENTN",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 433.74,
|
||||
"T_units": "K",
|
||||
"p": 3196000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3270.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 256.6,
|
||||
"T_units": "K",
|
||||
"p": 35.40094732708782,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 8701.720394850296,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 256.6,
|
||||
"T_units": "K",
|
||||
"p": 35.40094732708782,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 16.951063913080816,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -5,6 +5,25 @@
|
||||
"N2"
|
||||
],
|
||||
"ANCILLARIES": {
|
||||
"melting_line": {
|
||||
"BibTeX": "Span-JPCRD-2000",
|
||||
"T_m": 77.34,
|
||||
"parts": [
|
||||
{
|
||||
"T_0": 63.151,
|
||||
"T_max": 283.8,
|
||||
"T_min": 63.151,
|
||||
"a": [
|
||||
12798.61
|
||||
],
|
||||
"p_0": 12523,
|
||||
"t": [
|
||||
1.78963
|
||||
]
|
||||
}
|
||||
],
|
||||
"type": "polynomial_in_Tr"
|
||||
},
|
||||
"pL": {
|
||||
"T_r": 126.192,
|
||||
"Tmax": 126.19199999999978,
|
||||
@@ -122,14 +141,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "7727-37-9",
|
||||
"CRITICAL": {
|
||||
"T": 126.192,
|
||||
"T_units": "K",
|
||||
"p": 3395800.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 11183.901464580624,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "A1",
|
||||
"FH": 0,
|
||||
@@ -145,6 +156,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Span-JPCRD-2000",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 126.192,
|
||||
"T_units": "K",
|
||||
"p": 3395800,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 11183.90146458062,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 63.151,
|
||||
"T_units": "K",
|
||||
"p": 12.519783487429175,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 30957.310274698266,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 63.151,
|
||||
"T_units": "K",
|
||||
"p": 12.519783487429175,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 24.069564468084323,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 1100,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 63.151,
|
||||
@@ -376,25 +413,37 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 2200000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 12519.78349,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 126.192,
|
||||
"T_units": "K",
|
||||
"p": 3395800,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 11183.90146458062,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 30957.16390402974,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 24.07364223019857,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "Nitrogen",
|
||||
"REFPROP_NAME": "NITROGEN",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 126.192,
|
||||
"T_units": "K",
|
||||
"p": 3395800.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 11183.901464580624,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 63.151,
|
||||
"T_units": "K",
|
||||
"p": 12.519783487429175,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 30957.310274698266,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 63.151,
|
||||
"T_units": "K",
|
||||
"p": 12.519783487429175,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 24.069564468084323,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"TRANSPORT": {
|
||||
"conductivity": {
|
||||
"BibTeX": "Lemmon-IJT-2004",
|
||||
|
||||
@@ -121,14 +121,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "10024-97-2",
|
||||
"CRITICAL": {
|
||||
"T": 309.52,
|
||||
"T_units": "K",
|
||||
"p": 7245000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 10270.000000000002,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "UNKNOWN",
|
||||
"FH": 0,
|
||||
@@ -144,6 +136,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Lemmon-JCED-2006",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 309.52,
|
||||
"T_units": "K",
|
||||
"p": 7245000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 10270,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 182.33,
|
||||
"T_units": "K",
|
||||
"p": 87.83743922580841,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 28113.432079357477,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 182.33,
|
||||
"T_units": "K",
|
||||
"p": 87.83743922580841,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 59.33601783159357,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 525,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 182.33,
|
||||
@@ -241,23 +259,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 50000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 87837.43923,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 309.52,
|
||||
"T_units": "K",
|
||||
"p": 7245000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 10270,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 28113.36563491833,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 59.33941145458979,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "NitrousOxide",
|
||||
"REFPROP_NAME": "N2O"
|
||||
"REFPROP_NAME": "N2O",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 309.52,
|
||||
"T_units": "K",
|
||||
"p": 7245000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 10270.000000000002,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 182.33,
|
||||
"T_units": "K",
|
||||
"p": 87.83743922580841,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 28113.432079357477,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 182.33,
|
||||
"T_units": "K",
|
||||
"p": 87.83743922580841,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 59.33601783159357,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -110,18 +110,36 @@
|
||||
}
|
||||
},
|
||||
"CAS": "7782-39-0o",
|
||||
"CRITICAL": {
|
||||
"T": 38.34,
|
||||
"T_units": "K",
|
||||
"p": 1679600.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 17230.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"EOS": [
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Richardson-JPCRD-2013",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 38.34,
|
||||
"T_units": "K",
|
||||
"p": 1679600,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 17230,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 18.724,
|
||||
"T_units": "K",
|
||||
"p": 17.1891019732537,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 43350.920890356414,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 18.724,
|
||||
"T_units": "K",
|
||||
"p": 17.1891019732537,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 112.95640342174914,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 600,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 18.724,
|
||||
@@ -311,23 +329,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 2000000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 17189.10197,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 38.34,
|
||||
"T_units": "K",
|
||||
"p": 1679600,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 17230,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 43350.35393172985,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 113.0018950964478,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "OrthoDeuterium",
|
||||
"REFPROP_NAME": "N/A"
|
||||
"REFPROP_NAME": "N/A",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 38.34,
|
||||
"T_units": "K",
|
||||
"p": 1679600.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 17230.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 18.724,
|
||||
"T_units": "K",
|
||||
"p": 17.1891019732537,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 43350.920890356414,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 18.724,
|
||||
"T_units": "K",
|
||||
"p": 17.1891019732537,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 112.95640342174914,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -111,14 +111,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "1333-74-0o",
|
||||
"CRITICAL": {
|
||||
"T": 33.22,
|
||||
"T_units": "K",
|
||||
"p": 1310650.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 15444.540313699812,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "UNKNOWN",
|
||||
"FH": -1,
|
||||
@@ -134,6 +126,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Leachman-JPCRD-2009",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 33.22,
|
||||
"T_units": "K",
|
||||
"p": 1310650,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 15444.54031369981,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 14.008,
|
||||
"T_units": "K",
|
||||
"p": 7.559882341056905,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 38199.18470071943,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 14.008,
|
||||
"T_units": "K",
|
||||
"p": 7.559882341056905,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 65.83968194171914,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 1000,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 14.008,
|
||||
@@ -273,23 +291,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 2000000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 7559.882341,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 33.22,
|
||||
"T_units": "K",
|
||||
"p": 1310650,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 15444.54031369981,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 38198.76565183698,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 65.87296564338153,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "OrthoHydrogen",
|
||||
"REFPROP_NAME": "ORTHOHYD"
|
||||
"REFPROP_NAME": "ORTHOHYD",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 33.22,
|
||||
"T_units": "K",
|
||||
"p": 1310650.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 15444.540313699812,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 14.008,
|
||||
"T_units": "K",
|
||||
"p": 7.559882341056905,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 38199.18470071943,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 14.008,
|
||||
"T_units": "K",
|
||||
"p": 7.559882341056905,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 65.83968194171914,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -5,6 +5,21 @@
|
||||
"O2"
|
||||
],
|
||||
"ANCILLARIES": {
|
||||
"melting_line": {
|
||||
"BibTeX": "Younglove-NIST-1982",
|
||||
"T_m": 54.75,
|
||||
"parts": [
|
||||
{
|
||||
"T_0": 1,
|
||||
"T_max": 63.1,
|
||||
"T_min": 54.361,
|
||||
"a": 227606.348,
|
||||
"c": 1.769,
|
||||
"p_0": -266999247.652
|
||||
}
|
||||
],
|
||||
"type": "Simon"
|
||||
},
|
||||
"pL": {
|
||||
"T_r": 154.581,
|
||||
"Tmax": 154.58099999999973,
|
||||
@@ -122,14 +137,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "7782-44-7",
|
||||
"CRITICAL": {
|
||||
"T": 154.581,
|
||||
"T_units": "K",
|
||||
"p": 5043000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 13630.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "UNKNOWN",
|
||||
"FH": 0,
|
||||
@@ -145,6 +152,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Stewart-JPCRD-1991",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 154.581,
|
||||
"T_units": "K",
|
||||
"p": 5043000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 13630,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 54.361,
|
||||
"T_units": "K",
|
||||
"p": 0.14627764704447577,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 40816.430817738415,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 54.361,
|
||||
"T_units": "K",
|
||||
"p": 0.14627764704447577,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.32370317009092064,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 300,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 54.361,
|
||||
@@ -352,25 +385,37 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 80000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 146.277647,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 154.581,
|
||||
"T_units": "K",
|
||||
"p": 5043000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 13630,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 40816.30337657147,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 0.3237995947960466,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "Oxygen",
|
||||
"REFPROP_NAME": "OXYGEN",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 154.581,
|
||||
"T_units": "K",
|
||||
"p": 5043000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 13630.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 54.361,
|
||||
"T_units": "K",
|
||||
"p": 0.14627764704447577,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 40816.430817738415,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 54.361,
|
||||
"T_units": "K",
|
||||
"p": 0.14627764704447577,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.32370317009092064,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"TRANSPORT": {
|
||||
"conductivity": {
|
||||
"BibTeX": "Lemmon-IJT-2004",
|
||||
|
||||
@@ -110,18 +110,36 @@
|
||||
}
|
||||
},
|
||||
"CAS": "7782-39-0p",
|
||||
"CRITICAL": {
|
||||
"T": 38.34,
|
||||
"T_units": "K",
|
||||
"p": 1679600.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 17230.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"EOS": [
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Richardson-JPCRD-2013",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 38.34,
|
||||
"T_units": "K",
|
||||
"p": 1679600,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 17230,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 18.724,
|
||||
"T_units": "K",
|
||||
"p": 17.1891019732537,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 43350.920890356414,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 18.724,
|
||||
"T_units": "K",
|
||||
"p": 17.1891019732537,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 112.95640342174914,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 600,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 18.724,
|
||||
@@ -309,23 +327,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 2000000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 17189.10197,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 38.34,
|
||||
"T_units": "K",
|
||||
"p": 1679600,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 17230,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 43350.35393172985,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 113.0018950964478,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "ParaDeuterium",
|
||||
"REFPROP_NAME": "N/A"
|
||||
"REFPROP_NAME": "N/A",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 38.34,
|
||||
"T_units": "K",
|
||||
"p": 1679600.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 17230.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 18.724,
|
||||
"T_units": "K",
|
||||
"p": 17.1891019732537,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 43350.920890356414,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 18.724,
|
||||
"T_units": "K",
|
||||
"p": 17.1891019732537,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 112.95640342174914,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -5,6 +5,29 @@
|
||||
"PARAHYDROGEN"
|
||||
],
|
||||
"ANCILLARIES": {
|
||||
"melting_line": {
|
||||
"BibTeX": "Younglove-NIST-1982",
|
||||
"T_m": 18.9,
|
||||
"parts": [
|
||||
{
|
||||
"T_0": 1,
|
||||
"T_max": 22,
|
||||
"T_min": 13.8033,
|
||||
"a": 125746.643,
|
||||
"c": 1.955,
|
||||
"p_0": -21155737.752
|
||||
},
|
||||
{
|
||||
"T_0": 1,
|
||||
"T_max": 164.5,
|
||||
"T_min": 22,
|
||||
"a": 248578.596,
|
||||
"c": 1.764739,
|
||||
"p_0": -26280332.904
|
||||
}
|
||||
],
|
||||
"type": "Simon"
|
||||
},
|
||||
"pL": {
|
||||
"T_r": 32.938,
|
||||
"Tmax": 32.93799999999992,
|
||||
@@ -122,14 +145,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "1333-74-0p",
|
||||
"CRITICAL": {
|
||||
"T": 32.938,
|
||||
"T_units": "K",
|
||||
"p": 1285800.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 15538.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "UNKNOWN",
|
||||
"FH": -1,
|
||||
@@ -145,6 +160,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Leachman-JPCRD-2009",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 32.938,
|
||||
"T_units": "K",
|
||||
"p": 1285800,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 15538,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 13.8033,
|
||||
"T_units": "K",
|
||||
"p": 7.041086751148159,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 38185.34690822156,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 13.8033,
|
||||
"T_units": "K",
|
||||
"p": 7.041086751148159,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 62.28040619273301,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 1000,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 13.8033,
|
||||
@@ -290,25 +331,37 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 2000000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 7041.086751,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 32.938,
|
||||
"T_units": "K",
|
||||
"p": 1285800,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 15538,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 38184.94839776529,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 62.31256337798966,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "ParaHydrogen",
|
||||
"REFPROP_NAME": "PARAHYD",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 32.938,
|
||||
"T_units": "K",
|
||||
"p": 1285800.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 15538.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 13.8033,
|
||||
"T_units": "K",
|
||||
"p": 7.041086751148159,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 38185.34690822156,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 13.8033,
|
||||
"T_units": "K",
|
||||
"p": 7.041086751148159,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 62.28040619273301,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"TRANSPORT": {
|
||||
"conductivity": {
|
||||
"BibTeX": "Assael-JPCRD-2011-Hydrogen",
|
||||
|
||||
@@ -4,6 +4,29 @@
|
||||
"PROPYLENE"
|
||||
],
|
||||
"ANCILLARIES": {
|
||||
"melting_line": {
|
||||
"BibTeX": "Reeves-JCP-1964",
|
||||
"T_m": 88.05999999999997,
|
||||
"parts": [
|
||||
{
|
||||
"T_0": 86.0,
|
||||
"T_max": 129,
|
||||
"T_min": 86.0,
|
||||
"a": 319600000.0,
|
||||
"c": 2.821,
|
||||
"p_0": 0
|
||||
},
|
||||
{
|
||||
"T_0": 109.6,
|
||||
"T_max": 145.3,
|
||||
"T_min": 129,
|
||||
"a": 306400000.0,
|
||||
"c": 3.871,
|
||||
"p_0": 445000000.0
|
||||
}
|
||||
],
|
||||
"type": "Simon"
|
||||
},
|
||||
"pL": {
|
||||
"T_r": 364.211,
|
||||
"Tmax": 364.2109999999991,
|
||||
@@ -121,14 +144,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "115-07-1",
|
||||
"CRITICAL": {
|
||||
"T": 364.211,
|
||||
"T_units": "K",
|
||||
"p": 4555000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 5457.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "A3",
|
||||
"FH": 4,
|
||||
@@ -144,6 +159,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Lemmon-PROPYLENE-2013",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 364.211,
|
||||
"T_units": "K",
|
||||
"p": 4555000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 5457,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 87.953,
|
||||
"T_units": "K",
|
||||
"p": 7.471728686559866e-07,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 18254.562780551245,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 87.953,
|
||||
"T_units": "K",
|
||||
"p": 7.471728686559866e-07,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 1.0217291002947154e-06,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 575,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 87.953,
|
||||
@@ -329,23 +370,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 1000000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 0.0007471728687,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 364.211,
|
||||
"T_units": "K",
|
||||
"p": 4555000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 5457,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 18254.53452723806,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 1.022108934557587e-06,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "Propylene",
|
||||
"REFPROP_NAME": "PROPYLEN"
|
||||
"REFPROP_NAME": "PROPYLEN",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 364.211,
|
||||
"T_units": "K",
|
||||
"p": 4555000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 5457.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 87.953,
|
||||
"T_units": "K",
|
||||
"p": 7.471728686559866e-07,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 18254.562780551245,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 87.953,
|
||||
"T_units": "K",
|
||||
"p": 7.471728686559866e-07,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 1.0217291002947154e-06,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -121,14 +121,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "74-99-7",
|
||||
"CRITICAL": {
|
||||
"T": 402.38,
|
||||
"T_units": "K",
|
||||
"p": 5626000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 6113.33,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "UNKNOWN",
|
||||
"FH": 4,
|
||||
@@ -144,6 +136,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "Polt-CT-1992",
|
||||
"BibTeX_EOS": "Polt-CT-1992",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 402.38,
|
||||
"T_units": "K",
|
||||
"p": 5626000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 6113.33,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 273.0,
|
||||
"T_units": "K",
|
||||
"p": 263.5669059887786,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 16279.0418039543,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 273.0,
|
||||
"T_units": "K",
|
||||
"p": 263.5669059887786,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 124.13577693070359,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 474,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 170.5,
|
||||
@@ -312,23 +330,21 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 31800000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 263566.906,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 402.38,
|
||||
"T_units": "K",
|
||||
"p": 5626000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 6113.33,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 2.496255616575137e+100,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 2.496255616575137e+100,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "Propyne",
|
||||
"REFPROP_NAME": "PROPYNE"
|
||||
"REFPROP_NAME": "PROPYNE",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 402.38,
|
||||
"T_units": "K",
|
||||
"p": 5626000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 6113.33,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {},
|
||||
"triple_vapor": {}
|
||||
}
|
||||
}
|
||||
@@ -118,14 +118,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "75-69-4",
|
||||
"CRITICAL": {
|
||||
"T": 471.06,
|
||||
"T_units": "K",
|
||||
"p": 4394000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4113.0394269407725,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "A1",
|
||||
"FH": 1,
|
||||
@@ -141,6 +133,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "Jacobsen-FPE-1992",
|
||||
"BibTeX_EOS": "Span-IJT-2003C",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 471.06,
|
||||
"T_units": "K",
|
||||
"p": 4394000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4113.039426940773,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 162.68,
|
||||
"T_units": "K",
|
||||
"p": 0.006691548080564487,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 12962.580254202647,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 162.68,
|
||||
"T_units": "K",
|
||||
"p": 0.006691548080564487,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.0049471885961455235,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 595,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 162.68,
|
||||
@@ -267,23 +285,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 100000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 6.691548081,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 471.06,
|
||||
"T_units": "K",
|
||||
"p": 4394000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4113.039426940773,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 12962.56328885987,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 0.004947861179952363,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "R11",
|
||||
"REFPROP_NAME": "R11"
|
||||
"REFPROP_NAME": "R11",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 471.06,
|
||||
"T_units": "K",
|
||||
"p": 4394000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4113.0394269407725,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 162.68,
|
||||
"T_units": "K",
|
||||
"p": 0.006691548080564487,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 12962.580254202647,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 162.68,
|
||||
"T_units": "K",
|
||||
"p": 0.006691548080564487,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.0049471885961455235,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -118,14 +118,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "76-13-1",
|
||||
"CRITICAL": {
|
||||
"T": 487.21,
|
||||
"T_units": "K",
|
||||
"p": 3392200.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 2988.6591060707137,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "A1",
|
||||
"FH": 0,
|
||||
@@ -141,6 +133,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Marx-BOOK-1992",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 487.21,
|
||||
"T_units": "K",
|
||||
"p": 3392200,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 2988.659106070714,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 236.93,
|
||||
"T_units": "K",
|
||||
"p": 1.8714275474637754,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 9098.73910142307,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 236.93,
|
||||
"T_units": "K",
|
||||
"p": 1.8714275474637754,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.9519906098017169,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 525,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 236.93,
|
||||
@@ -270,23 +288,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 200000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 1871.427547,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 487.21,
|
||||
"T_units": "K",
|
||||
"p": 3392200,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 2988.659106070714,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 9098.726940322524,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 0.9520516197832899,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "R113",
|
||||
"REFPROP_NAME": "R113"
|
||||
"REFPROP_NAME": "R113",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 487.21,
|
||||
"T_units": "K",
|
||||
"p": 3392200.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 2988.6591060707137,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 236.93,
|
||||
"T_units": "K",
|
||||
"p": 1.8714275474637754,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 9098.73910142307,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 236.93,
|
||||
"T_units": "K",
|
||||
"p": 1.8714275474637754,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.9519906098017169,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -118,14 +118,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "76-14-2",
|
||||
"CRITICAL": {
|
||||
"T": 418.83,
|
||||
"T_units": "K",
|
||||
"p": 3257000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3393.2000000000003,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "A1",
|
||||
"FH": 0,
|
||||
@@ -141,6 +133,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "Platzer-BOOK-1990",
|
||||
"BibTeX_EOS": "Platzer-BOOK-1990",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 418.83,
|
||||
"T_units": "K",
|
||||
"p": 3257000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3393.2,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 273.15,
|
||||
"T_units": "K",
|
||||
"p": 88.16238676245308,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 8941.873943827432,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 273.15,
|
||||
"T_units": "K",
|
||||
"p": 88.16238676245308,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 40.2224880739269,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 507,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 180.63,
|
||||
@@ -309,23 +327,21 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 21000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 88162.38676,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 418.83,
|
||||
"T_units": "K",
|
||||
"p": 3257000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3393.2,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 5.850656151087344e+99,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 5.850656151087344e+99,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "R114",
|
||||
"REFPROP_NAME": "R114"
|
||||
"REFPROP_NAME": "R114",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 418.83,
|
||||
"T_units": "K",
|
||||
"p": 3257000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3393.2000000000003,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {},
|
||||
"triple_vapor": {}
|
||||
}
|
||||
}
|
||||
@@ -120,14 +120,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "76-16-4",
|
||||
"CRITICAL": {
|
||||
"T": 293.03,
|
||||
"T_units": "K",
|
||||
"p": 3048000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4444.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "A1",
|
||||
"FH": 0,
|
||||
@@ -143,6 +135,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Lemmon-JCED-2006",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 293.03,
|
||||
"T_units": "K",
|
||||
"p": 3048000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4444,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 173.1,
|
||||
"T_units": "K",
|
||||
"p": 26.083734153791088,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 12304.01402333065,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 173.1,
|
||||
"T_units": "K",
|
||||
"p": 26.083734153791088,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 18.437295644282788,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 425,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 173.1,
|
||||
@@ -240,23 +258,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 50000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 26083.73415,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 293.03,
|
||||
"T_units": "K",
|
||||
"p": 3048000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4444,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 12303.98435269038,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 18.43851575195629,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "R116",
|
||||
"REFPROP_NAME": "R116"
|
||||
"REFPROP_NAME": "R116",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 293.03,
|
||||
"T_units": "K",
|
||||
"p": 3048000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4444.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 173.1,
|
||||
"T_units": "K",
|
||||
"p": 26.083734153791088,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 12304.01402333065,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 173.1,
|
||||
"T_units": "K",
|
||||
"p": 26.083734153791088,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 18.437295644282788,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -120,14 +120,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "75-71-8",
|
||||
"CRITICAL": {
|
||||
"T": 385.12,
|
||||
"T_units": "K",
|
||||
"p": 4136100.0000000005,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4672.781255944357,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "A1",
|
||||
"FH": 1,
|
||||
@@ -143,6 +135,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Marx-BOOK-1992",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 385.12,
|
||||
"T_units": "K",
|
||||
"p": 4136100.000000001,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4672.781255944357,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 116.099,
|
||||
"T_units": "K",
|
||||
"p": 0.00024255019529824656,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 15125.291310337965,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 116.099,
|
||||
"T_units": "K",
|
||||
"p": 0.00024255019529824656,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.00025126911645679634,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 525,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 116.099,
|
||||
@@ -288,23 +306,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 200000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 0.2425501953,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 385.12,
|
||||
"T_units": "K",
|
||||
"p": 4136100.000000001,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4672.781255944357,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 15125.26924010347,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 0.0002513257531784137,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "R12",
|
||||
"REFPROP_NAME": "R12"
|
||||
"REFPROP_NAME": "R12",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 385.12,
|
||||
"T_units": "K",
|
||||
"p": 4136100.0000000005,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4672.781255944357,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 116.099,
|
||||
"T_units": "K",
|
||||
"p": 0.00024255019529824656,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 15125.291310337965,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 116.099,
|
||||
"T_units": "K",
|
||||
"p": 0.00024255019529824656,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.00025126911645679634,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -118,14 +118,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "306-83-2",
|
||||
"CRITICAL": {
|
||||
"T": 456.82,
|
||||
"T_units": "K",
|
||||
"p": 3672000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3616.0098345005263,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "B1",
|
||||
"FH": 1,
|
||||
@@ -141,6 +133,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "Younglove-JPCRD-1994",
|
||||
"BibTeX_EOS": "Span-IJT-2003C",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 456.82,
|
||||
"T_units": "K",
|
||||
"p": 3672000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3616.009834500526,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 166.0,
|
||||
"T_units": "K",
|
||||
"p": 0.004153442716713842,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 11612.830801100323,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 166.0,
|
||||
"T_units": "K",
|
||||
"p": 0.004153442716713842,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.0030093692214729455,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 523,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 166,
|
||||
@@ -252,25 +270,37 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 76000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 4.153442717,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 456.82,
|
||||
"T_units": "K",
|
||||
"p": 3672000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3616.009834500526,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 11612.8148830159,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 0.003009801496735872,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "R123",
|
||||
"REFPROP_NAME": "R123",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 456.82,
|
||||
"T_units": "K",
|
||||
"p": 3672000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3616.0098345005263,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 166.0,
|
||||
"T_units": "K",
|
||||
"p": 0.004153442716713842,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 11612.830801100323,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 166.0,
|
||||
"T_units": "K",
|
||||
"p": 0.004153442716713842,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.0030093692214729455,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"TRANSPORT": {
|
||||
"conductivity": {
|
||||
"BibTeX": "Laesecke-IJR-1996",
|
||||
|
||||
@@ -111,18 +111,36 @@
|
||||
}
|
||||
},
|
||||
"CAS": "102687-65-0",
|
||||
"CRITICAL": {
|
||||
"T": 438.75,
|
||||
"T_units": "K",
|
||||
"p": 3570900.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3670.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"EOS": [
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 438.75,
|
||||
"T_units": "K",
|
||||
"p": 3570900,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3670,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 195.15,
|
||||
"T_units": "K",
|
||||
"p": 0.2502655780810593,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 11408.679640912957,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 195.15,
|
||||
"T_units": "K",
|
||||
"p": 0.2502655780810593,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.1543039194302124,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 550,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 195.15,
|
||||
@@ -279,23 +297,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 100000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 250.2655781,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 438.75,
|
||||
"T_units": "K",
|
||||
"p": 3570900,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3670,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 11408.66354648404,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 0.1543187791572448,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "R1233zd(E)",
|
||||
"REFPROP_NAME": "R1233ZD"
|
||||
"REFPROP_NAME": "R1233ZD",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 438.75,
|
||||
"T_units": "K",
|
||||
"p": 3570900.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3670.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 195.15,
|
||||
"T_units": "K",
|
||||
"p": 0.2502655780810593,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 11408.679640912957,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 195.15,
|
||||
"T_units": "K",
|
||||
"p": 0.2502655780810593,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.1543039194302124,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -120,14 +120,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "754-12-1",
|
||||
"CRITICAL": {
|
||||
"T": 367.85,
|
||||
"T_units": "K",
|
||||
"p": 3382200.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4170.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "A2L",
|
||||
"FH": 2,
|
||||
@@ -143,6 +135,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Richter-JCED-2011",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 367.85,
|
||||
"T_units": "K",
|
||||
"p": 3382200,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4170,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 220.0,
|
||||
"T_units": "K",
|
||||
"p": 31.50755884790354,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 11633.107308832525,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 220.0,
|
||||
"T_units": "K",
|
||||
"p": 31.50755884790354,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 17.583525551960502,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 410,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 220,
|
||||
@@ -286,25 +304,37 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 30000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 31507.55885,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 367.85,
|
||||
"T_units": "K",
|
||||
"p": 3382200,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4170,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 11633.08448763467,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 17.58443653644202,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "R1234yf",
|
||||
"REFPROP_NAME": "R1234YF",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 367.85,
|
||||
"T_units": "K",
|
||||
"p": 3382200.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4170.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 220.0,
|
||||
"T_units": "K",
|
||||
"p": 31.50755884790354,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 11633.107308832525,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 220.0,
|
||||
"T_units": "K",
|
||||
"p": 31.50755884790354,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 17.583525551960502,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"TRANSPORT": {
|
||||
"conductivity": {
|
||||
"BibTeX": "Perkins-JCED-2011",
|
||||
|
||||
@@ -111,14 +111,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "29118-24-9",
|
||||
"CRITICAL": {
|
||||
"T": 382.52,
|
||||
"T_units": "K",
|
||||
"p": 3636250.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4290.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "UNKNOWN",
|
||||
"FH": 2,
|
||||
@@ -134,6 +126,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "McLinden-PURDUE-2010",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 382.52,
|
||||
"T_units": "K",
|
||||
"p": 3636250,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4290,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 168.62,
|
||||
"T_units": "K",
|
||||
"p": 0.23128175666601208,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 13194.862559792387,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 168.62,
|
||||
"T_units": "K",
|
||||
"p": 0.23128175666601208,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.1650276209820342,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 410,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 168.62,
|
||||
@@ -281,25 +299,37 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 15000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 231.2817567,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 382.52,
|
||||
"T_units": "K",
|
||||
"p": 3636250,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4290,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 8.768730560908124e+99,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 8.768730560908124e+99,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "R1234ze(E)",
|
||||
"REFPROP_NAME": "R1234ZE",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 382.52,
|
||||
"T_units": "K",
|
||||
"p": 3636250.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4290.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 168.62,
|
||||
"T_units": "K",
|
||||
"p": 0.23128175666601208,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 13194.862559792387,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 168.62,
|
||||
"T_units": "K",
|
||||
"p": 0.23128175666601208,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.1650276209820342,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"TRANSPORT": {
|
||||
"conductivity": {
|
||||
"BibTeX": "Perkins-JCED-2011",
|
||||
|
||||
@@ -109,18 +109,36 @@
|
||||
}
|
||||
},
|
||||
"CAS": "29118-25-0",
|
||||
"CRITICAL": {
|
||||
"T": 423.27,
|
||||
"T_units": "K",
|
||||
"p": 3533000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4121.303363626818,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"EOS": [
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Akasaka-DELFT-2013",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 423.27,
|
||||
"T_units": "K",
|
||||
"p": 3533000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4126.696132921778,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 273.0,
|
||||
"T_units": "K",
|
||||
"p": 67.8029393595567,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 11250.756301033864,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 273.0,
|
||||
"T_units": "K",
|
||||
"p": 67.8029393595567,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 31.076296533864262,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 430,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 273,
|
||||
@@ -242,23 +260,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 6000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 67802.93936,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 423.27,
|
||||
"T_units": "K",
|
||||
"p": 3533000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4126.696132921778,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 11250.73553652318,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 31.07753309192204,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "R1234ze(Z)",
|
||||
"REFPROP_NAME": "N/A"
|
||||
"REFPROP_NAME": "N/A",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 423.27,
|
||||
"T_units": "K",
|
||||
"p": 3533000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4121.303363626818,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 273.0,
|
||||
"T_units": "K",
|
||||
"p": 67.8029393595567,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 11250.756301033864,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 273.0,
|
||||
"T_units": "K",
|
||||
"p": 67.8029393595567,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 31.076296533864262,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -118,14 +118,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "2837-89-0",
|
||||
"CRITICAL": {
|
||||
"T": 395.425,
|
||||
"T_units": "K",
|
||||
"p": 3624295.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4103.279546177282,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "A1",
|
||||
"FH": 1,
|
||||
@@ -141,6 +133,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "deVries-ICR-1995",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 395.425,
|
||||
"T_units": "K",
|
||||
"p": 3624295,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4103.279546177282,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 120.0,
|
||||
"T_units": "K",
|
||||
"p": 2.6738378997651697e-05,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 13575.60781120709,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 120.0,
|
||||
"T_units": "K",
|
||||
"p": 2.6738378997651697e-05,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 2.679904646421173e-05,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 470,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 75,
|
||||
@@ -276,25 +294,23 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 40000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 0.026738379,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 395.425,
|
||||
"T_units": "K",
|
||||
"p": 3624295,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4103.279546177282,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 7.327284903888004e+99,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 7.327284903888004e+99,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "R124",
|
||||
"REFPROP_NAME": "R124",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 395.425,
|
||||
"T_units": "K",
|
||||
"p": 3624295.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4103.279546177282,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {},
|
||||
"triple_vapor": {}
|
||||
},
|
||||
"TRANSPORT": {
|
||||
"conductivity": {
|
||||
"BibTeX": "",
|
||||
|
||||
@@ -118,14 +118,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "354-33-6",
|
||||
"CRITICAL": {
|
||||
"T": 339.173,
|
||||
"T_units": "K",
|
||||
"p": 3617700.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4779.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "UNKNOWN",
|
||||
"FH": 1,
|
||||
@@ -141,6 +133,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Lemmon-JPCRD-2005",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 339.173,
|
||||
"T_units": "K",
|
||||
"p": 3617700,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4779,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 172.52,
|
||||
"T_units": "K",
|
||||
"p": 2.9140460090935645,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 14086.490950189835,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 172.52,
|
||||
"T_units": "K",
|
||||
"p": 2.9140460090935645,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 2.038105466033143,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 500,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 172.52,
|
||||
@@ -291,25 +309,37 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 60000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 2914.046009,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 339.173,
|
||||
"T_units": "K",
|
||||
"p": 3617700,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4779,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 14086.46410777493,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 2.038282831772791,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "R125",
|
||||
"REFPROP_NAME": "R125",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 339.173,
|
||||
"T_units": "K",
|
||||
"p": 3617700.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4779.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 172.52,
|
||||
"T_units": "K",
|
||||
"p": 2.9140460090935645,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 14086.490950189835,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 172.52,
|
||||
"T_units": "K",
|
||||
"p": 2.9140460090935645,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 2.038105466033143,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"TRANSPORT": {
|
||||
"conductivity": {
|
||||
"BibTeX": "Perkins-JCED-2006",
|
||||
|
||||
@@ -118,14 +118,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "75-72-9",
|
||||
"CRITICAL": {
|
||||
"T": 301.88,
|
||||
"T_units": "K",
|
||||
"p": 3879000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 5580.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "A1",
|
||||
"FH": -1,
|
||||
@@ -141,6 +133,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "Platzer-BOOK-1990",
|
||||
"BibTeX_EOS": "Platzer-BOOK-1990",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 301.88,
|
||||
"T_units": "K",
|
||||
"p": 3879000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 5580,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 98.15,
|
||||
"T_units": "K",
|
||||
"p": 0.0009070389769883204,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 17728.463741136216,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 98.15,
|
||||
"T_units": "K",
|
||||
"p": 0.0009070389769883204,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.001111476996623622,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 450,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 92,
|
||||
@@ -309,23 +327,21 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 50000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 0.907038977,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 301.88,
|
||||
"T_units": "K",
|
||||
"p": 3879000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 5580,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 9.573133956863457e+99,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 9.573133956863457e+99,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "R13",
|
||||
"REFPROP_NAME": "R13"
|
||||
"REFPROP_NAME": "R13",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 301.88,
|
||||
"T_units": "K",
|
||||
"p": 3879000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 5580.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {},
|
||||
"triple_vapor": {}
|
||||
}
|
||||
}
|
||||
@@ -120,14 +120,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "811-97-2",
|
||||
"CRITICAL": {
|
||||
"T": 374.21,
|
||||
"T_units": "K",
|
||||
"p": 4059280.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 5017.053,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "A1",
|
||||
"FH": 1,
|
||||
@@ -143,6 +135,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "TillnerRoth-JPCRD-1994",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 374.18,
|
||||
"T_units": "K",
|
||||
"p": 4059280,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4978.830171000001,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 169.85,
|
||||
"T_units": "K",
|
||||
"p": 0.3895637886074885,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 15594.200379934839,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 169.85,
|
||||
"T_units": "K",
|
||||
"p": 0.3895637886074885,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.2761122800115172,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 455,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 169.85,
|
||||
@@ -274,25 +292,37 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 70000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 389.5637886,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 374.18,
|
||||
"T_units": "K",
|
||||
"p": 4059280,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4978.830171000001,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 15594.17453546275,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 0.2761416512149696,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "R134a",
|
||||
"REFPROP_NAME": "R134A",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 374.21,
|
||||
"T_units": "K",
|
||||
"p": 4059280.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 5017.053,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 169.85,
|
||||
"T_units": "K",
|
||||
"p": 0.3895637886074885,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 15594.200379934839,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 169.85,
|
||||
"T_units": "K",
|
||||
"p": 0.3895637886074885,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.2761122800115172,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"TRANSPORT": {
|
||||
"viscosity": {
|
||||
"BibTeX": "Huber-IECR-2003",
|
||||
|
||||
@@ -118,14 +118,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "75-73-0",
|
||||
"CRITICAL": {
|
||||
"T": 227.51,
|
||||
"T_units": "K",
|
||||
"p": 3750000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 7109.4194,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "UNKNOWN",
|
||||
"FH": -1,
|
||||
@@ -141,6 +133,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "Platzer-BOOK-1990",
|
||||
"BibTeX_EOS": "Platzer-BOOK-1990",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 227.51,
|
||||
"T_units": "K",
|
||||
"p": 3750000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 7109.4194,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 120.0,
|
||||
"T_units": "K",
|
||||
"p": 11.294329044453496,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 19669.032618775986,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 120.0,
|
||||
"T_units": "K",
|
||||
"p": 11.294329044453496,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 11.391239450518714,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 623,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 89.54,
|
||||
@@ -303,23 +321,21 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 51000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 11294.32904,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 227.51,
|
||||
"T_units": "K",
|
||||
"p": 3750000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 7109.4194,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 1.136304238642071e+100,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 1.136304238642071e+100,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "R14",
|
||||
"REFPROP_NAME": "R14"
|
||||
"REFPROP_NAME": "R14",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 227.51,
|
||||
"T_units": "K",
|
||||
"p": 3750000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 7109.4194,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {},
|
||||
"triple_vapor": {}
|
||||
}
|
||||
}
|
||||
@@ -122,14 +122,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "1717-00-6",
|
||||
"CRITICAL": {
|
||||
"T": 477.5,
|
||||
"T_units": "K",
|
||||
"p": 4212000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3921.0000000000005,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "UNKNOWN",
|
||||
"FH": 1,
|
||||
@@ -145,6 +137,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Lemmon-JCED-2006",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 477.5,
|
||||
"T_units": "K",
|
||||
"p": 4212000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3921.000000000001,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 169.68,
|
||||
"T_units": "K",
|
||||
"p": 0.0064927351770598255,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 12559.705823578954,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 169.68,
|
||||
"T_units": "K",
|
||||
"p": 0.0064927351770598255,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.004602358265154211,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 500,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 169.68,
|
||||
@@ -242,23 +260,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 400000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 6.492735177,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 477.5,
|
||||
"T_units": "K",
|
||||
"p": 4212000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3921.000000000001,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 12559.6898931719,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 0.004602980802102235,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "R141b",
|
||||
"REFPROP_NAME": "R141B"
|
||||
"REFPROP_NAME": "R141B",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 477.5,
|
||||
"T_units": "K",
|
||||
"p": 4212000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3921.0000000000005,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 169.68,
|
||||
"T_units": "K",
|
||||
"p": 0.0064927351770598255,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 12559.705823578954,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 169.68,
|
||||
"T_units": "K",
|
||||
"p": 0.0064927351770598255,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.004602358265154211,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -120,14 +120,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "75-68-3",
|
||||
"CRITICAL": {
|
||||
"T": 410.26,
|
||||
"T_units": "K",
|
||||
"p": 4055000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4438.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "A2",
|
||||
"FH": 1,
|
||||
@@ -143,6 +135,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Lemmon-JCED-2006",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 410.26,
|
||||
"T_units": "K",
|
||||
"p": 4055000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4438,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 142.72,
|
||||
"T_units": "K",
|
||||
"p": 0.0036326517168714123,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 14439.015484955165,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 142.72,
|
||||
"T_units": "K",
|
||||
"p": 0.0036326517168714123,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.003061359346361367,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 470,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 142.72,
|
||||
@@ -242,23 +260,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 60000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 3.632651717,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 410.26,
|
||||
"T_units": "K",
|
||||
"p": 4055000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4438,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 14438.99364774879,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 0.003061859597935982,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "R142b",
|
||||
"REFPROP_NAME": "R142B"
|
||||
"REFPROP_NAME": "R142B",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 410.26,
|
||||
"T_units": "K",
|
||||
"p": 4055000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4438.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 142.72,
|
||||
"T_units": "K",
|
||||
"p": 0.0036326517168714123,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 14439.015484955165,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 142.72,
|
||||
"T_units": "K",
|
||||
"p": 0.0036326517168714123,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.003061359346361367,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -120,14 +120,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "420-46-2",
|
||||
"CRITICAL": {
|
||||
"T": 345.857,
|
||||
"T_units": "K",
|
||||
"p": 3761000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 5128.45,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "A2",
|
||||
"FH": 1,
|
||||
@@ -143,6 +135,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "LemmonJacobsen-JPCRD-2000",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 345.857,
|
||||
"T_units": "K",
|
||||
"p": 3761000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 5128.45,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 161.34,
|
||||
"T_units": "K",
|
||||
"p": 1.074945443137482,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 15832.104698511099,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 161.34,
|
||||
"T_units": "K",
|
||||
"p": 1.074945443137482,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.803616507488138,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 450,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 161.34,
|
||||
@@ -275,23 +293,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 150000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 1074.945443,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 345.857,
|
||||
"T_units": "K",
|
||||
"p": 3761000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 5128.45,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 15832.07605236137,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 0.8036952601578995,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "R143a",
|
||||
"REFPROP_NAME": "R143A"
|
||||
"REFPROP_NAME": "R143A",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 345.857,
|
||||
"T_units": "K",
|
||||
"p": 3761000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 5128.45,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 161.34,
|
||||
"T_units": "K",
|
||||
"p": 1.074945443137482,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 15832.104698511099,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 161.34,
|
||||
"T_units": "K",
|
||||
"p": 1.074945443137482,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.803616507488138,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -120,14 +120,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "75-37-6",
|
||||
"CRITICAL": {
|
||||
"T": 386.411,
|
||||
"T_units": "K",
|
||||
"p": 4520000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 5571.452362568319,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "A2",
|
||||
"FH": 4,
|
||||
@@ -143,6 +135,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "TillnerRoth-IJT-1995",
|
||||
"BibTeX_EOS": "Span-IJT-2003C",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 386.411,
|
||||
"T_units": "K",
|
||||
"p": 4520000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 5571.452362568319,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 154.56,
|
||||
"T_units": "K",
|
||||
"p": 0.06408986801291847,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 18031.095642133463,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 154.56,
|
||||
"T_units": "K",
|
||||
"p": 0.06408986801291847,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.04989056799859409,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 471,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 154.56,
|
||||
@@ -246,25 +264,37 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 58000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 64.08986801,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 386.411,
|
||||
"T_units": "K",
|
||||
"p": 4520000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 5571.452362568319,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 18031.06754931742,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 0.04989696663288685,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "R152A",
|
||||
"REFPROP_NAME": "R152A",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 386.411,
|
||||
"T_units": "K",
|
||||
"p": 4520000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 5571.452362568319,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 154.56,
|
||||
"T_units": "K",
|
||||
"p": 0.06408986801291847,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 18031.095642133463,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 154.56,
|
||||
"T_units": "K",
|
||||
"p": 0.06408986801291847,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.04989056799859409,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"TRANSPORT": {
|
||||
"conductivity": {
|
||||
"BibTeX": "Krauss-IJT-1996",
|
||||
|
||||
@@ -121,14 +121,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "353-36-6",
|
||||
"CRITICAL": {
|
||||
"T": 375.25,
|
||||
"T_units": "K",
|
||||
"p": 5010000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 6280.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "UNKNOWN",
|
||||
"FH": -1,
|
||||
@@ -144,6 +136,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Wu-IJT-2012",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 375.25,
|
||||
"T_units": "K",
|
||||
"p": 5010000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 6280,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 130.0,
|
||||
"T_units": "K",
|
||||
"p": 0.00551226945206069,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 19913.25305828297,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 130.0,
|
||||
"T_units": "K",
|
||||
"p": 0.00551226945206069,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.005099837512332045,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 450,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 130,
|
||||
@@ -291,23 +309,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 5000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 5.512269452,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 375.25,
|
||||
"T_units": "K",
|
||||
"p": 5010000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 6280,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 19913.22529395975,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 0.005100738577476638,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "R161",
|
||||
"REFPROP_NAME": "R161"
|
||||
"REFPROP_NAME": "R161",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 375.25,
|
||||
"T_units": "K",
|
||||
"p": 5010000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 6280.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 130.0,
|
||||
"T_units": "K",
|
||||
"p": 0.00551226945206069,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 19913.25305828297,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 130.0,
|
||||
"T_units": "K",
|
||||
"p": 0.00551226945206069,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.005099837512332045,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -118,14 +118,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "75-43-4",
|
||||
"CRITICAL": {
|
||||
"T": 451.48,
|
||||
"T_units": "K",
|
||||
"p": 5181200.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 5110.765599999999,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "B1",
|
||||
"FH": -1,
|
||||
@@ -141,6 +133,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "Platzer-BOOK-1990",
|
||||
"BibTeX_EOS": "Platzer-BOOK-1990",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 451.48,
|
||||
"T_units": "K",
|
||||
"p": 5181200,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 5110.765599999999,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 200.0,
|
||||
"T_units": "K",
|
||||
"p": 0.8728349799124349,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 15359.760861872839,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 200.0,
|
||||
"T_units": "K",
|
||||
"p": 0.8728349799124349,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.5254904978375974,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 473,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 142.8,
|
||||
@@ -309,23 +327,21 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 138000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 872.8349799,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 451.48,
|
||||
"T_units": "K",
|
||||
"p": 5181200,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 5110.765599999999,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 9.716029602798992e+99,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 9.716029602798992e+99,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "R21",
|
||||
"REFPROP_NAME": "R21"
|
||||
"REFPROP_NAME": "R21",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 451.48,
|
||||
"T_units": "K",
|
||||
"p": 5181200.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 5110.765599999999,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {},
|
||||
"triple_vapor": {}
|
||||
}
|
||||
}
|
||||
@@ -118,14 +118,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "76-19-7",
|
||||
"CRITICAL": {
|
||||
"T": 345.02,
|
||||
"T_units": "K",
|
||||
"p": 2640000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3340.0000000000005,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "A1",
|
||||
"FH": 1,
|
||||
@@ -141,6 +133,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Lemmon-JCED-2006",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 345.02,
|
||||
"T_units": "K",
|
||||
"p": 2640000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3340.000000000001,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 125.45,
|
||||
"T_units": "K",
|
||||
"p": 0.0020185735581448633,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 10687.00507449543,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 125.45,
|
||||
"T_units": "K",
|
||||
"p": 0.0020185735581448633,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.0019353026559895711,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 440,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 125.45,
|
||||
@@ -238,23 +256,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 20000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 2.018573558,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 345.02,
|
||||
"T_units": "K",
|
||||
"p": 2640000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3340.000000000001,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 10686.98548996255,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 0.001935680262154043,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "R218",
|
||||
"REFPROP_NAME": "R218"
|
||||
"REFPROP_NAME": "R218",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 345.02,
|
||||
"T_units": "K",
|
||||
"p": 2640000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3340.0000000000005,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 125.45,
|
||||
"T_units": "K",
|
||||
"p": 0.0020185735581448633,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 10687.00507449543,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 125.45,
|
||||
"T_units": "K",
|
||||
"p": 0.0020185735581448633,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.0019353026559895711,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -120,14 +120,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "75-45-6",
|
||||
"CRITICAL": {
|
||||
"T": 369.295,
|
||||
"T_units": "K",
|
||||
"p": 4990000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 6058.220000000001,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "A1",
|
||||
"FH": 1,
|
||||
@@ -143,6 +135,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Kamei-IJT-1995",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 369.295,
|
||||
"T_units": "K",
|
||||
"p": 4990000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 6058.220000000001,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 115.73,
|
||||
"T_units": "K",
|
||||
"p": 0.0003794696733352661,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 19906.5340608497,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 115.73,
|
||||
"T_units": "K",
|
||||
"p": 0.0003794696733352661,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.0003943621124878414,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 550,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 115.73,
|
||||
@@ -367,23 +385,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 60000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 0.3794696733,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 369.295,
|
||||
"T_units": "K",
|
||||
"p": 4990000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 6058.220000000001,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 19906.50360279436,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 0.0003944515301070936,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "R22",
|
||||
"REFPROP_NAME": "R22"
|
||||
"REFPROP_NAME": "R22",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 369.295,
|
||||
"T_units": "K",
|
||||
"p": 4990000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 6058.220000000001,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 115.73,
|
||||
"T_units": "K",
|
||||
"p": 0.0003794696733352661,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 19906.5340608497,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 115.73,
|
||||
"T_units": "K",
|
||||
"p": 0.0003794696733352661,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.0003943621124878414,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -124,14 +124,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "431-89-0",
|
||||
"CRITICAL": {
|
||||
"T": 374.9,
|
||||
"T_units": "K",
|
||||
"p": 2925000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3495.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "A1",
|
||||
"FH": 0,
|
||||
@@ -147,6 +139,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "McLinden-PREPRINT-2013",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 374.9,
|
||||
"T_units": "K",
|
||||
"p": 2925000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3495,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 146.35,
|
||||
"T_units": "K",
|
||||
"p": 0.0073315671532078065,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 11046.705899800072,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 146.35,
|
||||
"T_units": "K",
|
||||
"p": 0.0073315671532078065,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.006025348183498564,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 475,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 146.35,
|
||||
@@ -310,23 +328,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 60000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 7.331567153,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 374.9,
|
||||
"T_units": "K",
|
||||
"p": 2925000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3495,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 11046.68969808219,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 0.006026313356105609,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "R227EA",
|
||||
"REFPROP_NAME": "R227EA"
|
||||
"REFPROP_NAME": "R227EA",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 374.9,
|
||||
"T_units": "K",
|
||||
"p": 2925000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3495.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 146.35,
|
||||
"T_units": "K",
|
||||
"p": 0.0073315671532078065,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 11046.705899800072,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 146.35,
|
||||
"T_units": "K",
|
||||
"p": 0.0073315671532078065,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.006025348183498564,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -120,14 +120,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "75-46-7",
|
||||
"CRITICAL": {
|
||||
"T": 299.293,
|
||||
"T_units": "K",
|
||||
"p": 4832000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 7519.999999999999,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "A1",
|
||||
"FH": 1,
|
||||
@@ -143,6 +135,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Penoncello-JPCRD-2003",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 299.293,
|
||||
"T_units": "K",
|
||||
"p": 4832000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 7519.999999999999,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 118.02,
|
||||
"T_units": "K",
|
||||
"p": 0.05804099433470835,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 24307.711593514352,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 118.02,
|
||||
"T_units": "K",
|
||||
"p": 0.05804099433470835,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.059176475268810494,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 425,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 118.02,
|
||||
@@ -262,25 +280,37 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 120000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 58.04099433,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 299.293,
|
||||
"T_units": "K",
|
||||
"p": 4832000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 7519.999999999999,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 24307.66608253263,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 0.0591864606267919,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "R23",
|
||||
"REFPROP_NAME": "R23",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 299.293,
|
||||
"T_units": "K",
|
||||
"p": 4832000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 7519.999999999999,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 118.02,
|
||||
"T_units": "K",
|
||||
"p": 0.05804099433470835,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 24307.711593514352,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 118.02,
|
||||
"T_units": "K",
|
||||
"p": 0.05804099433470835,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.059176475268810494,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"TRANSPORT": {
|
||||
"conductivity": {
|
||||
"BibTeX": "Shan-ASHRAE-2000",
|
||||
|
||||
@@ -122,14 +122,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "431-63-0",
|
||||
"CRITICAL": {
|
||||
"T": 412.44,
|
||||
"T_units": "K",
|
||||
"p": 3420000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3715.9999999999995,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "UNKNOWN",
|
||||
"FH": -1,
|
||||
@@ -145,6 +137,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Rui-FPE-2013",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 412.44,
|
||||
"T_units": "K",
|
||||
"p": 3420000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3716,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 243.0,
|
||||
"T_units": "K",
|
||||
"p": 17.498188402372996,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 10446.414258722269,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 243.0,
|
||||
"T_units": "K",
|
||||
"p": 17.498188402372996,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 8.76850319773379,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 412,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 170,
|
||||
@@ -288,23 +306,21 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 6000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 17498.1884,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 412.44,
|
||||
"T_units": "K",
|
||||
"p": 3420000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3716,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 6.577285738339787e+99,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 6.577285738339787e+99,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "R236EA",
|
||||
"REFPROP_NAME": "R236EA"
|
||||
"REFPROP_NAME": "R236EA",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 412.44,
|
||||
"T_units": "K",
|
||||
"p": 3420000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3715.9999999999995,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {},
|
||||
"triple_vapor": {}
|
||||
}
|
||||
}
|
||||
@@ -120,14 +120,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "690-39-1",
|
||||
"CRITICAL": {
|
||||
"T": 398.07,
|
||||
"T_units": "K",
|
||||
"p": 3200000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3626.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "A1",
|
||||
"FH": 0,
|
||||
@@ -143,6 +135,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Pan-FPE-2012",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 398.07,
|
||||
"T_units": "K",
|
||||
"p": 3200000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3626,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 179.6,
|
||||
"T_units": "K",
|
||||
"p": 0.16032677876015008,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 11234.50556190224,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 179.6,
|
||||
"T_units": "K",
|
||||
"p": 0.16032677876015008,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.1073988072445306,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 400,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 179.6,
|
||||
@@ -284,23 +302,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 70000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 160.3267788,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 398.07,
|
||||
"T_units": "K",
|
||||
"p": 3200000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3626,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 11234.48790273794,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 0.1074107170975478,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "R236FA",
|
||||
"REFPROP_NAME": "R236FA"
|
||||
"REFPROP_NAME": "R236FA",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 398.07,
|
||||
"T_units": "K",
|
||||
"p": 3200000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3626.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 179.6,
|
||||
"T_units": "K",
|
||||
"p": 0.16032677876015008,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 11234.50556190224,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 179.6,
|
||||
"T_units": "K",
|
||||
"p": 0.16032677876015008,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.1073988072445306,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -124,14 +124,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "460-73-1",
|
||||
"CRITICAL": {
|
||||
"T": 427.16,
|
||||
"T_units": "K",
|
||||
"p": 3651000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3849.9999999999995,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "B1",
|
||||
"FH": 0,
|
||||
@@ -147,6 +139,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Lemmon-JCED-2006",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 427.16,
|
||||
"T_units": "K",
|
||||
"p": 3651000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3850,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 171.05,
|
||||
"T_units": "K",
|
||||
"p": 0.012514805987099153,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 12292.489206924556,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 171.05,
|
||||
"T_units": "K",
|
||||
"p": 0.012514805987099153,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.008800777185860847,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 440,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 171.05,
|
||||
@@ -244,23 +262,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 200000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 12.51480599,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 427.16,
|
||||
"T_units": "K",
|
||||
"p": 3651000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3850,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 12292.47138861426,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 0.008801981575100712,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "R245fa",
|
||||
"REFPROP_NAME": "R245FA"
|
||||
"REFPROP_NAME": "R245FA",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 427.16,
|
||||
"T_units": "K",
|
||||
"p": 3651000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3849.9999999999995,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 171.05,
|
||||
"T_units": "K",
|
||||
"p": 0.012514805987099153,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 12292.489206924556,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 171.05,
|
||||
"T_units": "K",
|
||||
"p": 0.012514805987099153,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.008800777185860847,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -118,14 +118,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "75-10-5",
|
||||
"CRITICAL": {
|
||||
"T": 351.255,
|
||||
"T_units": "K",
|
||||
"p": 5782000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 8150.084599999999,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "A2",
|
||||
"FH": 4,
|
||||
@@ -141,6 +133,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "TillnerRoth-JPCRD-1997",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 351.255,
|
||||
"T_units": "K",
|
||||
"p": 5782000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 8150.084599999999,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 136.34,
|
||||
"T_units": "K",
|
||||
"p": 0.04799989366493727,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 27473.344990002275,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 136.34,
|
||||
"T_units": "K",
|
||||
"p": 0.04799989366493727,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.04235254435590307,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 435,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 136.34,
|
||||
@@ -268,23 +286,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 70000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 47.99989366,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 351.255,
|
||||
"T_units": "K",
|
||||
"p": 5782000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 8150.084599999999,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 27473.2983250474,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 0.04235884267931883,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "R32",
|
||||
"REFPROP_NAME": "R32"
|
||||
"REFPROP_NAME": "R32",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 351.255,
|
||||
"T_units": "K",
|
||||
"p": 5782000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 8150.084599999999,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 136.34,
|
||||
"T_units": "K",
|
||||
"p": 0.04799989366493727,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 27473.344990002275,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 136.34,
|
||||
"T_units": "K",
|
||||
"p": 0.04799989366493727,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 0.04235254435590307,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -120,14 +120,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "406-58-6",
|
||||
"CRITICAL": {
|
||||
"T": 460.0,
|
||||
"T_units": "K",
|
||||
"p": 3266000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3200.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "UNKNOWN",
|
||||
"FH": -1,
|
||||
@@ -143,6 +135,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "McLinden-PREPRINT-2013",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 460,
|
||||
"T_units": "K",
|
||||
"p": 3266000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3200,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 239.0,
|
||||
"T_units": "K",
|
||||
"p": 2.478418202176464,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 9298.157101466448,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 239.0,
|
||||
"T_units": "K",
|
||||
"p": 2.478418202176464,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 1.2511727163730078,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 500,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 239,
|
||||
@@ -285,23 +303,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 35000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": false,
|
||||
"ptriple": 2478.418202,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 460,
|
||||
"T_units": "K",
|
||||
"p": 3266000,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3200,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 9298.14395424287,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 1.251254102751831,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": false
|
||||
}
|
||||
],
|
||||
"NAME": "R365MFC",
|
||||
"REFPROP_NAME": "R365MFC"
|
||||
"REFPROP_NAME": "R365MFC",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 460.0,
|
||||
"T_units": "K",
|
||||
"p": 3266000.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 3200.0,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 239.0,
|
||||
"T_units": "K",
|
||||
"p": 2.478418202176464,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 9298.157101466448,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 239.0,
|
||||
"T_units": "K",
|
||||
"p": 2.478418202176464,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 1.2511727163730078,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -109,14 +109,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "R404A.PPF",
|
||||
"CRITICAL": {
|
||||
"T": 345.27,
|
||||
"T_units": "K",
|
||||
"p": 3734800.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4939.999999999999,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "A1",
|
||||
"FH": 1,
|
||||
@@ -132,6 +124,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Lemmon-IJT-2003",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 345.27,
|
||||
"T_units": "K",
|
||||
"p": 3734800,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4939.999999999999,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 200.0,
|
||||
"T_units": "K",
|
||||
"p": 22.64918747516521,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 14209.140749102651,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 200.0,
|
||||
"T_units": "K",
|
||||
"p": 21.264273816834987,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 13.009612612697538,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 450,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 200,
|
||||
@@ -278,25 +296,37 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 50000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": true,
|
||||
"ptriple": 21264.27382,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 345.27,
|
||||
"T_units": "K",
|
||||
"p": 3734800,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4939.999999999999,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 14209.11070707527,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 13.01041553482517,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": true
|
||||
}
|
||||
],
|
||||
"NAME": "R404A",
|
||||
"REFPROP_NAME": "R404A",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 345.27,
|
||||
"T_units": "K",
|
||||
"p": 3734800.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 4939.999999999999,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 200.0,
|
||||
"T_units": "K",
|
||||
"p": 22.64918747516521,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 14209.140749102651,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 200.0,
|
||||
"T_units": "K",
|
||||
"p": 21.264273816834987,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 13.009612612697538,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"TRANSPORT": {
|
||||
"conductivity": {
|
||||
"BibTeX": "Geller-PURDUE-2001",
|
||||
|
||||
@@ -109,14 +109,6 @@
|
||||
}
|
||||
},
|
||||
"CAS": "R407C.PPF",
|
||||
"CRITICAL": {
|
||||
"T": 359.345,
|
||||
"T_units": "K",
|
||||
"p": 4631700.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 5260.000046401775,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"ENVIRONMENTAL": {
|
||||
"ASHRAE34": "A1",
|
||||
"FH": 1,
|
||||
@@ -132,6 +124,32 @@
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "Lemmon-IJT-2003",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 359.345,
|
||||
"T_units": "K",
|
||||
"p": 4631700,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 5260.000046401775,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 200.0,
|
||||
"T_units": "K",
|
||||
"p": 19.15805451544979,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 17036.35645139292,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 200.0,
|
||||
"T_units": "K",
|
||||
"p": 11.311511234771459,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 6.864256457230267,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 450,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 200,
|
||||
@@ -274,25 +292,37 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 50000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": true,
|
||||
"ptriple": 11311.51123,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 359.345,
|
||||
"T_units": "K",
|
||||
"p": 4631700,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 5260.000046401775,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 17036.32270806373,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 6.864730526475812,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": true
|
||||
}
|
||||
],
|
||||
"NAME": "R407C",
|
||||
"REFPROP_NAME": "R407C",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 359.345,
|
||||
"T_units": "K",
|
||||
"p": 4631700.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 5260.000046401775,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 200.0,
|
||||
"T_units": "K",
|
||||
"p": 19.15805451544979,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 17036.35645139292,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 200.0,
|
||||
"T_units": "K",
|
||||
"p": 11.311511234771459,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 6.864256457230267,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"TRANSPORT": {
|
||||
"conductivity": {
|
||||
"BibTeX": "Geller-PURDUE-2001",
|
||||
|
||||
@@ -107,18 +107,36 @@
|
||||
}
|
||||
},
|
||||
"CAS": "R407F.ppf",
|
||||
"CRITICAL": {
|
||||
"T": 355.804,
|
||||
"T_units": "K",
|
||||
"p": 4754610.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 5816.413452386901,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"EOS": [
|
||||
{
|
||||
"BibTeX_CP0": "",
|
||||
"BibTeX_EOS": "",
|
||||
"STATES": {
|
||||
"reducing": {
|
||||
"T": 355.804,
|
||||
"T_units": "K",
|
||||
"p": 4754610,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 5816.413452386901,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_liquid": {
|
||||
"T": 200.0,
|
||||
"T_units": "K",
|
||||
"p": 21.85074400548867,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 17707.28915058032,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"sat_min_vapor": {
|
||||
"T": 200.0,
|
||||
"T_units": "K",
|
||||
"p": 13.568238570898698,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 8.242011270809071,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
},
|
||||
"T_max": 450,
|
||||
"T_max_units": "K",
|
||||
"Ttriple": 200,
|
||||
@@ -233,23 +251,35 @@
|
||||
"molar_mass_units": "kg/mol",
|
||||
"p_max": 50000000,
|
||||
"p_max_units": "Pa",
|
||||
"pseudo_pure": true,
|
||||
"ptriple": 13568.23857,
|
||||
"ptriple_units": "Pa",
|
||||
"reducing_state": {
|
||||
"T": 355.804,
|
||||
"T_units": "K",
|
||||
"p": 4754610,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 5816.413452386901,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"rhoLtriple": 17707.25386371137,
|
||||
"rhoLtriple_units": "mol/m^3",
|
||||
"rhoVtriple": 8.242572413460806,
|
||||
"rhoVtriple_units": "mol/m^3"
|
||||
"pseudo_pure": true
|
||||
}
|
||||
],
|
||||
"NAME": "R407F",
|
||||
"REFPROP_NAME": "N/A"
|
||||
"REFPROP_NAME": "N/A",
|
||||
"STATES": {
|
||||
"critical": {
|
||||
"T": 355.804,
|
||||
"T_units": "K",
|
||||
"p": 4754610.0,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 5816.413452386901,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_liquid": {
|
||||
"T": 200.0,
|
||||
"T_units": "K",
|
||||
"p": 21.85074400548867,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 17707.28915058032,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
},
|
||||
"triple_vapor": {
|
||||
"T": 200.0,
|
||||
"T_units": "K",
|
||||
"p": 13.568238570898698,
|
||||
"p_units": "Pa",
|
||||
"rhomolar": 8.242011270809071,
|
||||
"rhomolar_units": "mol/m^3"
|
||||
}
|
||||
}
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user