Files
CoolProp/dev/mixtures/mixture_binary_pairs.json
Ian Bell 4542f9d093 Merge into release (#1057)
* Bump revision on msgpack-c

* Remove warnings when using Julia 0.4 realease

Some change in Julia 0.4 have occurred since the last update of this wrapper.
This update should now ensure better behaviour with Julia 0.4 which is now in release state.
https://raw.githubusercontent.com/JuliaLang/julia/0ff703b40afddf9b705bd6a06d3a59cb4c089ea5/NEWS.md

* Added PT flash for cubic EOS

* Added PQ and QT inputs for pure fluids with cubic backend

* Added derivation for relationship between saturation pressure and acentric factor

* Fixed T_critical and p_critical for pure fluids with cubic backends

* Bump revision for msgpack-c; everything should work now

* Correct get_parameter_information_string, fixes #974

Put the catch in a more useful way and solves the call to CoolProp::get_parameter_information.

* Relax convergence criterion for TS inputs; closes #956

* Update the updating of the TPD state class

* Fix initial delta value in critical point search routine

* Make CMake+Python integration work on OSX (finally)

* Fix some bugs with cubics and critical point evaluation

* Added conda builds again to please #905 and #956

* Added conda to the release cycle with directory cleaning. Should solve the problems discussed in #956, #905 and #707, but we have to wait for the next nightly build to see if it really works. Remember that the upload token on the server expires in June and uploads will fail silently.

* Added cppformat as external library, see #952 and #907. Does https://github.com/CoolProp/CoolProp/blob/master/dev/codelite/coolprop.project need updating?

* Add ability to get/set kij for cubics by overloading set/set_binary_interaction_double

* Pull in the correct include path for linking with other applications (PDSim, etc.)

* Don't package _JSON.h binary files when distributing CoolProp

* Fixed the docker docs

* Moved the binstar upload into a loop, if a single upload fails, we continue with the next one as mentioned in #905

* Update critical point evaluation routines and remove some double-calculations of critical matrices

* Move search radii into the cpp file

* Bump revision for Eigen to fix annoying warnings in MSVC9 2008

* Added info about Props1SI and other options to docs; closes #970

* Bump number of fluids

* Update CoolProp.jl

Other update due to `Julia 0.4` changes
+ added `CoolProp` functions

* Just a minor fix of the docker docs

* Also add the msgpack headers to CoolProp installation - more annoying than you would imagine...

* Break up tools headers into pieces that make more sense, allowing for potentially smaller binaries and faster compilation

* Fix some header issues

* Update DBL_EPSILON

* Fix _HUGE and accumulate errors

* Add missing fstream include

* One more try with header refactor

* Add header to get thread_local for ftw

* Added the cahced saturation densities to the keyed outputs for REFPROP and Helmholtz, see #977

* Add 'G' as alias for mass-based Gibbs energy

* Eliminated some more warnings regarding missing return values

* Fixed the white-space issues in the header files

* Add IWYU integration to main module; see #983

* Fix order of getting/setting parameters

* Fix order of parameter getting/setting for real this time

* For REFPROP, get/set BIP for mixture with indices

* Fix some edge cases in critical point calculation

* Switch back to the PDF generator for the fitting reports

* Massive improvements to stability of flash routines.  Nitrogen now has 0 failures.

* Added Syltherm800 for @adesideri

* Fixes #990 Javascript works again.

* Clarified the docs for #990

* Fix R123ze(E) reference; closes #992

* Some help with #986

* Added the generated cubic header to the ignore files

* Add example showing how to get REFPROP version

* Added two headers that might help with #995

* More sensible error message when using inappropriate version of REFPROP for phase envelope construction

* Add comment about MinGW generator for Android build

* Add example for calling DLL from C; closes #993

* Maybe this fixes multiple papers in the same category from #987

* Introducing limits for build logs to save disk space

* Clean up Android docs

* Kill min and max macros to close #995

* Bump REFPROP header file revision

* Small updates to docs

closes #996
closes #997

* Significant improvements to phase envelope construction

Thanks to the critical point evaluation routines

* Also add the configuration key

* Refactor phase envelope packaging with msgpack to remove external msgpack-c include

Also, don't package msgpack or rapidjson with CoolProp.  Doesn't seem necessary now

* Refine the phase envelopes in the liquid side based on difference in pressure

Closes #998

* Allow ability to adjust the fineness of the refinement of the phase envelope from the high-level

* Improvement in stability of refinement of phase envelopes

* Cubics library should use all uppercase names for matching

* Got QT inputs working for cubic mixtures

Also implemented the explicit solution for p from Wilson

* Progress with PQ inputs for cubics; some bugs remain still

* Still not obvious why SRK PQ fails.... Updated tests for derivatives of fugacity_coefficient

* Mostly a false alarm.  Seems PQ works ok, not at very low pressure though

* Implement 95% of the BIP setting/getting

See #1000

* Fix journal abbreviations; closes #999

* Update mixtures setting/getting BIP docs

* Where possible, remove include paths

Can't do so for Eigen.

closes #994

* Fix include for msgpack-c; see #994

* Fix path for IF97 in HumidAirProp.cpp

* Move error string into solver class; see #985

* Add docs for explicit solution for p from T for Wilson K-factor relationship

* Fix include paths for OSX; see #994

* First attempt at adding python 3.5 wheels; see #1002

* Upgrade cython as part of python build

* Fix typo in coolprop cp 3.5 build in buildbot

* Install cython into the appropriate environment this time

* Fix order of initialization for solver wrapper class

* Wrap all configuration variables into enumerations and a python module

* Added docs for new config strings

* Upgrade cython for sphinx builder

* Fix configuration sample in docs

* Fix constant in Chung method for estimation of e/k and sigma

* Added the Python 3.5 docs for #1002

* Added Python 3.5 to the Linux slaves, this won't work until CoolProp/Dockerfiles#1 is resolved

* Removed unused variables

* Better deal with inputs for tabular backends that are two-phase

* Fix stupid bug with tabular backends trying to evaluate pure_saturation tables when two-phase in first_partial_deriv

* Rename cubics schema file

* Cubics now are validated and new cubic fluids can be added

Lots of changes:
* Cubics are validated against schema
* Schema can be returned as string
* Added preliminary docs for cubics
* Cubic fluids can be added programmatically

* Add cair_sat to DLL/SO; closes #1005

* Add link to cubics page to main dos page

* Actually commit the docs for the cubic EOS this time.

* Fix Android docs formatting

* Add Ar alias for Argon; closes #1007

* Once more addressing #979 thanks to @shrx .

* I am constantly running out of disk space on the Windows machine.

* Add chemical potential as abstract state method

For example:

```
auto fluids = strsplit("Methane&Ethane", '&');
auto x = { 0.6,0.4 };

shared_ptr<CoolProp::AbstractState> RP(CoolProp::AbstractState::factory("HEOS", fluids));
RP->set_mole_fractions(x);
RP->update(PT_INPUTS, 101325, 300);
auto mu1 = RP->chemical_potential(0);

RP.reset(CoolProp::AbstractState::factory("REFPROP", fluids));
RP->set_mole_fractions(x);
RP->update(PT_INPUTS, 101325, 300);
auto mu2 = RP->chemical_potential(0);
```

* Abbreviate JCT properly

* Removed the cython upgrades to get more errors from the builders

* Update references; closes #1011

* Give access to dalphar_ddelta_consttau and dalphar_ddtau_constdelta in high-level api; closes #1010

* Implement stability analysis based on TPD analysis; partly working

* The Windows builder has been upgraded to 4 cores

* Typo in master.cfg

* It is more difficult than I though to have parallel builds

* Add ability to use GERG in REFPROP; closes #923

* Give access to alphar in high-level API; closes #1012

* Add a few more spaces

* And remove the condition on the additional spaces

* Allow beta to be outside (0,1) in stability analysis in first SS part

* Add REFPROP version output to the examples

* Fix typo in use of GERG in docs

* Secant behaves properly now when y1 approx. y2; closes #1015

* target_link_libraries

* clear molar mass in clear function; closes #1021

* Fix docs for tangent_plane_distance; closes #1019

* Typo in TPD fix; see #1019

* Make the gas constant an adjustable parameter and update to CODATA 2014 value

* Skip volume translation for cubics; closes #1018

* Fix typo in R_u update

* Fix copying of kij in cubic backend get_copy function

* Disable some optional checks in specialized low-level update functions

* Finish stability calculations for critical point calculations!

* Remove check of eigenvalues of L* matrix to determine stability (or not)

* Add access to h_Ice, s_Ice, etc. through HAProps_Aux; closes #1017

* Add script to do mingw static library building for python; closes #1016

* Use cmake to build sphinx docs on OSX

* Pad fluid string all the way to 10k characters

* Run R example with Rscript rather than R

* Fix call to Rscript

* Add Rscript to CMake test as well

* Update the Rscript calling stuff

* Fix Rscript calling in example_generator.py

* Fix typo in debugging printing for stability calcs

* Add some info to the Help section

* Describe how to make coolprop static library a clean cmake dependency; closes #1014

* Fix typo in CMake integration

* Fix call to Rscript in CMakeLists.txt?

* Another try with Rscript

* Yet another try with R

* Add new OSX slave for OSX 10.10+

* Try to fix the install path for OSX

* python static library builds should be release builds

* Another try with MATLAB on OSX 10.10

* Another attempt with MATLAB path

* Allow MATLAB tests to be disabled

* Add link to binaries for MATLAB for OSX 10.10; see #1013

* Add coefficients from JCED paper; closes #854

* Fix interaction parameters for new mixtures

* Fix docs for new BIP from JCED paper

* Fix REFPROP version for older version of REFPROP.

* Add updated docs for cubics (WIP)

* Small modifications to finish (?) critical point calculations

* Small bug fixes

* Guard against multiple definitions of "_CRT_SECURE_NO_WARNINGS" macro on Windows

* More macro definitions

* Refactor HMX.BNC path handling for REFPROP

Closes #1028
See #1023

* Add pass-throughs for testing derivatives; closes #1030

* Fix(?) issues with loading multiple predefined mixtures in REFPROP; see #1023

* Fix failures for PQ at triple-point pressure; closes #1009

* Switch python 3.5 windows builds to use vc14 cmake compiler; see #1002

* Remove static library linkage when building pythonn 3.5 wheels; see #1002

* Updates to docs for cubics and VLE tolerances

closes #1024
closes #1025

* Fixes STRING conflict between Mathcad library and cppformat

The Mathcad library header, mcadincl.h, defines a STRING constant.  This
should be MC_STRING, as STRING is too dangerous and conflicts with
STRING enumeration value in format.h from external/cppformat.

* Move a lot of mixture derivatives to the new formulation; see #1032

* First attempt at fixing logo size in cloud theme. See #1029

* Another try at resizing logo for firefox; see #1029

* a quick fix that might work with #1029

* forgot the match the aspect ratio, see #1029

* Disabled the conda builds again, closes #1033

* Removed scipy references or changed them to be imported locally, fixes #1036

* Circumvent Cython issues from #1039, not sure this is a fix

* Changed the string handling to tackle #979

* manylinux builds for 64-bit linux wheels are up-and-running

Run the ./build_images.sh script, builds docker image, and uses docker image to build the linux wheels

* Small logo instead of big one; see #1029

* Fixed #1040 thanks to the comments by @LORENZOTOCCI

* Pushing the new viscosities to the JSON files, getting ready for an intermediate nightly release

* Removed the conda builds from the docs, they are abandoned for now

* Make the logo smaller

* Disable the python linux builds in preparation of changeover to manylinux1 builds

* More changes for manylinux

* manylinux wheels fully working now

* Copy cppformat to the appropriate location

* Fix typo in OSX build flags

* Fixed Minor MSVC Compiler Warnings (#1041)

* Fixed Minor Warnings from MSVC

Minor type mis-matches, etc.

* Replace int(...) with static_cast<int>(...)

* First attempt at #1044

* Fix PT inputs along critical isobar and critical isotherm; closes #1034

* Add REFPROP version to REFPROP comparison script; closes #1026

* Added a number of new predefined mixtures; see #719

* Tidy up sphinx docs; closes #1029

* Moved more mixture derivatives tests to use new format; see #1032

* Fixed typo in fugacity wrapper function; see #1032

* Add acentric factor for Air; closes #1001

* Fixed units in RP1485 validation tables

* Disable image resizing

Could be done by setting DPI in savefig

* Copy PlatformDetermination.h into the top of CoolPropLib.h; see #946

* Try to resize the font a little bit in the sphinx output

* Mathcad Wrapper Updates for CoolProp 5.x and 6 (#1047)


Minor type mis-matches, etc.



* Update CMakeLists.txt for both Mathcad Prime and Mathad 15

Copied original MATHCAD module and modified for a PRIME module and a
MATHCAD15 module.

* Updated Mathcad Wrapper for version 5 & 6

Changes to CoolPropMathad.cpp:
* Uses PropsSI(), Props1SI(), and HAPropsSI()
* One source for both Prime and Mathcad 15
* Replaced Mathcad error #defines with enumerated values
* Replaced STRING const with MC_STRING enum
* Uses LP* and LPC* types from MCADINCL.h instead of * const
* Implemented get_global_param_string & get_fluid_param_string
* Cleaned up comments
GENERAL:
* Removed batch files (they don't work anymore)
* Updated README.rst in both directories with compile instruct.
* Removed cpp file from Prime directory (no longer needed)
* Removed MCADINCL headers (better to use from install directory)

* Fixed Typo on Props1SI function name

* Add function documentation XML file for Mathcad 15

Puts the functions in the Insert Function panel off the main menu of
Mathcad

* Modify Mathcad 15 README.rst

* Update Prime README.rst

* Update Prime README.rst (again)

* Fixed CmakeLists path and updated README files.

More robust CMake file and updated README info for clarity.

* Fixed RST syntax in README

* Update install commands for cmake, update doc index

* Commit the RST files for MathCAD15 and Prime

* Add MathCAD builders to buildbot

* Finished conversion of derivatives to new formulation; closes #1032

* Fix MathCAD build?

* Fix REFPROP comparison string

* Another try at MathCAD buildbot

* Add apply_simple_mixing_rule to AbstractState; fix bug with SatL and SatV and setting interaction parameters

closes #1048
closes #1049

* One more go for MathCAD+buildbot

* Touch the time-stamped file for expensive builds only after success

* Yet another try with MathCAD

* Align Tmax with REFPROP values (#1053)

* Remove non-operative gitignore rule.

This rule matches the /dev/fluids folder and all its
contents, but those were already in the repo, so the
rule is not in effect.

* Align Tmax with REFPROP values. Fixes #257.

I used the list given in #257.
DME, C12, Neon, SF6 values went down.
R11, R123, R152A had two occurences in EOS, I changed both.

* Added "set_reference_state" wrapper for Mathcad and Updated Example Worksheets (#1056)


- Added Mathcad wrapper for set_reference_stateS(), designated
set_reference_state in Mathcad.
- Added to the funcdoc interface (CoolProp_EN.xml)
- Tidy up some formatting in the README files

* Updated Mathcad 15 and Prime Example Sheets + PDFs of Each

@ibell I know we don't like binaries in the rep, but I feel these are
critical.  They are updates to the Mathcad worksheets that were already
there and PDF versions for anyone who doesn't have Mathcad (i.e.
@ibell).  The files are only about 250 KB each or 1MB total.  I don't
expect we'll need to add to them or add more.  We might consider how to
put these out with the DLL binaries as well.  They are the only
documentation on how to use the wrappers correctly.

* Fixed CMakeList.txt confict and modified M15 worksheet from .xmcd to .xmcdz (compressed file type)

* Install the smaller compressed worksheet for MathCAD 15; see #1056

* Add rho*sr scaling methodology for viscosity from Bell paper in Purdue conference

closes #816
closes #665

* Add reference to Purdue paper

* Prep for version 6 release

* Added contributors
2016-05-10 22:20:22 -06:00

9954 lines
197 KiB
JSON

[
{
"BibTeX": "Lemmon-JPCRD-2004",
"CAS1": "75-10-5",
"CAS2": "354-33-6",
"F": 1.0,
"Name1": "R32",
"Name2": "R125",
"function": "R32-R125",
"xi": 28.95,
"zeta": -6.008e-06
},
{
"BibTeX": "Lemmon-JPCRD-2004",
"CAS1": "75-10-5",
"CAS2": "811-97-2",
"F": 1.0,
"Name1": "R32",
"Name2": "R134a",
"function": "R32-R134a",
"xi": 7.909,
"zeta": -2.039e-06
},
{
"BibTeX": "Lemmon-JPCRD-2004",
"CAS1": "354-33-6",
"CAS2": "811-97-2",
"F": 1.0,
"Name1": "R125",
"Name2": "R134a",
"function": "GeneralizedHFC",
"xi": -0.4326,
"zeta": -3.453e-07
},
{
"BibTeX": "Lemmon-JPCRD-2004",
"CAS1": "354-33-6",
"CAS2": "420-46-2",
"F": 1.1697,
"Name1": "R125",
"Name2": "R143a",
"function": "GeneralizedHFC",
"xi": 5.551,
"zeta": -4.452e-07
},
{
"BibTeX": "Lemmon-JPCRD-2004",
"CAS1": "811-97-2",
"CAS2": "420-46-2",
"F": 0.5557,
"Name1": "R134a",
"Name2": "R143a",
"function": "GeneralizedHFC",
"xi": 2.324,
"zeta": 6.182e-07
},
{
"BibTeX": "Lemmon-JPCRD-2004",
"CAS1": "811-97-2",
"CAS2": "75-37-6",
"F": 2.0,
"Name1": "R134a",
"Name2": "R152a",
"function": "GeneralizedHFC",
"xi": 4.202,
"zeta": 4.223e-06
},
{
"BibTeX": "Gernert-Thesis-2013",
"CAS1": "124-38-9",
"CAS2": "7732-18-5",
"F": 1.0,
"Name1": "CarbonDioxide",
"Name2": "Water",
"betaT": 1.030538,
"betaV": 1.021392,
"function": "CarbonDioxide-Water",
"gammaT": 0.828472,
"gammaV": 0.895156
},
{
"BibTeX": "Gernert-Thesis-2013",
"CAS1": "124-38-9",
"CAS2": "7727-37-9",
"F": 1.0,
"Name1": "CarbonDioxide",
"Name2": "Nitrogen",
"betaT": 0.994140013,
"betaV": 1.022709642,
"function": "Nitrogen-CarbonDioxide",
"gammaT": 1.107654104,
"gammaV": 1.047578256
},
{
"BibTeX": "Gernert-Thesis-2013",
"CAS1": "124-38-9",
"CAS2": "7782-44-7",
"F": 0.0,
"Name1": "CarbonDioxide",
"Name2": "Oxygen",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.031986,
"gammaV": 1.08446
},
{
"BibTeX": "Gernert-Thesis-2013",
"CAS1": "124-38-9",
"CAS2": "7440-37-1",
"F": 1.0,
"Name1": "CarbonDioxide",
"Name2": "Argon",
"betaT": 1.027147,
"betaV": 1.001378,
"function": "Argon-CarbonDioxide",
"gammaT": 0.968781,
"gammaV": 1.02971
},
{
"BibTeX": "Gernert-Thesis-2013",
"CAS1": "124-38-9",
"CAS2": "630-08-0",
"F": 0.0,
"Name1": "CarbonDioxide",
"Name2": "CarbonMonoxide",
"betaT": 0.993245,
"betaV": 1.030855,
"gammaT": 1.068392,
"gammaV": 1.245499
},
{
"BibTeX": "Gernert-Thesis-2013",
"CAS1": "7732-18-5",
"CAS2": "7727-37-9",
"F": 1.0,
"Name1": "Water",
"Name2": "Nitrogen",
"betaT": 0.954149,
"betaV": 1.079628,
"function": "GeneralizedAirWater",
"gammaT": 0.805147,
"gammaV": 0.733443
},
{
"BibTeX": "Gernert-Thesis-2013",
"CAS1": "7732-18-5",
"CAS2": "7782-44-7",
"F": 0.6017,
"Name1": "Water",
"Name2": "Oxygen",
"betaT": 0.798046,
"betaV": 0.972576,
"function": "GeneralizedAirWater",
"gammaT": 0.807842,
"gammaV": 0.87346
},
{
"BibTeX": "Gernert-Thesis-2013",
"CAS1": "7732-18-5",
"CAS2": "7440-37-1",
"F": 0.0,
"Name1": "Water",
"Name2": "Argon",
"betaT": 0.679104,
"betaV": 0.940398,
"gammaT": 0.921,
"gammaV": 1.050952
},
{
"BibTeX": "Gernert-Thesis-2013",
"CAS1": "7732-18-5",
"CAS2": "630-08-0",
"F": 0.9897,
"Name1": "Water",
"Name2": "CarbonMonoxide",
"betaT": 1.045927,
"betaV": 1.063348,
"function": "GeneralizedAirWater",
"gammaT": 0.823984,
"gammaV": 0.766756
},
{
"BibTeX": "Gernert-Thesis-2013",
"CAS1": "7727-37-9",
"CAS2": "7782-44-7",
"F": 0.0,
"Name1": "Nitrogen",
"Name2": "Oxygen",
"betaT": 0.997190589,
"betaV": 0.99952177,
"gammaT": 0.995157044,
"gammaV": 0.997082328
},
{
"BibTeX": "Gernert-Thesis-2013",
"CAS1": "7727-37-9",
"CAS2": "7440-37-1",
"F": 0.0,
"Name1": "Nitrogen",
"Name2": "Argon",
"betaT": 0.999442,
"betaV": 1.006697,
"gammaT": 0.989311,
"gammaV": 1.001549
},
{
"BibTeX": "Gernert-Thesis-2013",
"CAS1": "7727-37-9",
"CAS2": "630-08-0",
"F": 0.0,
"Name1": "Nitrogen",
"Name2": "CarbonMonoxide",
"betaT": 1.002409,
"betaV": 1.0,
"gammaT": 0.9941,
"gammaV": 1.001317
},
{
"BibTeX": "Gernert-Thesis-2013",
"CAS1": "7782-44-7",
"CAS2": "7440-37-1",
"F": 0.0,
"Name1": "Oxygen",
"Name2": "Argon",
"betaT": 0.999039,
"betaV": 1.006502,
"gammaT": 0.988822,
"gammaV": 1.001341
},
{
"BibTeX": "Gernert-Thesis-2013",
"CAS1": "7782-44-7",
"CAS2": "630-08-0",
"F": 0.0,
"Name1": "Oxygen",
"Name2": "CarbonMonoxide",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Gernert-Thesis-2013",
"CAS1": "630-08-0",
"CAS2": "7440-37-1",
"F": 0.0,
"Name1": "CarbonMonoxide",
"Name2": "Argon",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 0.954215746,
"gammaV": 1.159720623
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-82-8",
"CAS2": "7727-37-9",
"F": 1.0,
"Name1": "Methane",
"Name2": "Nitrogen",
"betaT": 0.99809883,
"betaV": 0.998721377,
"function": "Methane-Nitrogen",
"gammaT": 0.979273013,
"gammaV": 1.013950311
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-82-8",
"CAS2": "124-38-9",
"F": 1.0,
"Name1": "Methane",
"Name2": "CarbonDioxide",
"betaT": 1.02262449,
"betaV": 0.999518072,
"function": "Methane-CarbonDioxide",
"gammaT": 0.975665369,
"gammaV": 1.002806594
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-82-8",
"CAS2": "74-84-0",
"F": 1.0,
"Name1": "Methane",
"Name2": "Ethane",
"betaT": 0.996336508,
"betaV": 0.997547866,
"function": "Methane-Ethane",
"gammaT": 1.049707697,
"gammaV": 1.006617867
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-82-8",
"CAS2": "74-98-6",
"F": 1.0,
"Name1": "Methane",
"Name2": "Propane",
"betaT": 0.989680305,
"betaV": 1.00482707,
"function": "Methane-Propane",
"gammaT": 1.098655531,
"gammaV": 1.038470657
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-82-8",
"CAS2": "106-97-8",
"F": 1.0,
"Name1": "Methane",
"Name2": "n-Butane",
"betaT": 0.99417491,
"betaV": 0.979105972,
"function": "GeneralizedAlkane",
"gammaT": 1.171607691,
"gammaV": 1.045375122
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-82-8",
"CAS2": "75-28-5",
"F": 0.771035405688,
"Name1": "Methane",
"Name2": "IsoButane",
"betaT": 0.980315756,
"betaV": 1.011240388,
"function": "GeneralizedAlkane",
"gammaT": 1.161117729,
"gammaV": 1.054319053
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-82-8",
"CAS2": "109-66-0",
"F": 0,
"Name1": "Methane",
"Name2": "n-Pentane",
"betaT": 0.992127525,
"betaV": 0.94833012,
"gammaT": 1.249173968,
"gammaV": 1.124508039
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-82-8",
"CAS2": "78-78-4",
"F": 0,
"Name1": "Methane",
"Name2": "Isopentane",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.188899743,
"gammaV": 1.343685343
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-82-8",
"CAS2": "110-54-3",
"F": 0,
"Name1": "Methane",
"Name2": "n-Hexane",
"betaT": 0.981844797,
"betaV": 0.958015294,
"gammaT": 1.330570181,
"gammaV": 1.052643846
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-82-8",
"CAS2": "142-82-5",
"F": 0,
"Name1": "Methane",
"Name2": "n-Heptane",
"betaT": 0.977431529,
"betaV": 0.962050831,
"gammaT": 1.379850328,
"gammaV": 1.156655935
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-82-8",
"CAS2": "111-65-9",
"F": 0,
"Name1": "Methane",
"Name2": "n-Octane",
"betaT": 0.957473785,
"betaV": 0.994740603,
"gammaT": 1.449245409,
"gammaV": 1.116549372
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-82-8",
"CAS2": "111-84-2",
"F": 0,
"Name1": "Methane",
"Name2": "n-Nonane",
"betaT": 0.947716769,
"betaV": 1.002852287,
"gammaT": 1.528532478,
"gammaV": 1.141895355
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-82-8",
"CAS2": "124-18-5",
"F": 0,
"Name1": "Methane",
"Name2": "n-Decane",
"betaT": 0.937777823,
"betaV": 1.033086292,
"gammaT": 1.568231489,
"gammaV": 1.146089637
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-82-8",
"CAS2": "1333-74-0",
"F": 1.0,
"Name1": "Methane",
"Name2": "Hydrogen",
"betaT": 1.0,
"betaV": 1.0,
"function": "Methane-Hydrogen",
"gammaT": 1.352643115,
"gammaV": 1.018702573
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-82-8",
"CAS2": "7782-44-7",
"F": 0,
"Name1": "Methane",
"Name2": "Oxygen",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 0.95,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-82-8",
"CAS2": "630-08-0",
"F": 0,
"Name1": "Methane",
"Name2": "CarbonMonoxide",
"betaT": 0.987411732,
"betaV": 0.997340772,
"gammaT": 0.987473033,
"gammaV": 1.006102927
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-82-8",
"CAS2": "7732-18-5",
"F": 0,
"Name1": "Methane",
"Name2": "Water",
"betaT": 1.063333913,
"betaV": 1.012783169,
"gammaT": 0.775810513,
"gammaV": 1.585018334
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-82-8",
"CAS2": "7783-06-4",
"F": 0,
"Name1": "Methane",
"Name2": "HydrogenSulfide",
"betaT": 1.011090031,
"betaV": 1.012599087,
"gammaT": 0.961155729,
"gammaV": 1.040161207
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-82-8",
"CAS2": "7440-59-7",
"F": 0,
"Name1": "Methane",
"Name2": "Helium",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 3.159776855,
"gammaV": 0.881405683
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-82-8",
"CAS2": "7440-37-1",
"F": 0,
"Name1": "Methane",
"Name2": "Argon",
"betaT": 0.990954281,
"betaV": 1.034630259,
"gammaT": 0.989843388,
"gammaV": 1.014678542
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "7727-37-9",
"CAS2": "124-38-9",
"F": 1.0,
"Name1": "Nitrogen",
"Name2": "CarbonDioxide",
"betaT": 1.005894529,
"betaV": 0.977794634,
"function": "Nitrogen-CarbonDioxide",
"gammaT": 1.107654104,
"gammaV": 1.047578256
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "7727-37-9",
"CAS2": "74-84-0",
"F": 1.0,
"Name1": "Nitrogen",
"Name2": "Ethane",
"betaT": 1.007671428,
"betaV": 0.978880168,
"function": "Nitrogen-Ethane",
"gammaT": 1.098650964,
"gammaV": 1.042352891
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "7727-37-9",
"CAS2": "74-98-6",
"F": 0,
"Name1": "Nitrogen",
"Name2": "Propane",
"betaT": 1.002677329,
"betaV": 0.974424681,
"gammaT": 1.201264026,
"gammaV": 1.081025408
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "7727-37-9",
"CAS2": "106-97-8",
"F": 0,
"Name1": "Nitrogen",
"Name2": "n-Butane",
"betaT": 0.994515234,
"betaV": 0.99608261,
"gammaT": 1.304886838,
"gammaV": 1.146949309
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "7727-37-9",
"CAS2": "75-28-5",
"F": 0,
"Name1": "Nitrogen",
"Name2": "IsoButane",
"betaT": 0.99286813,
"betaV": 0.98641583,
"gammaT": 1.284462634,
"gammaV": 1.100576129
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "7727-37-9",
"CAS2": "109-66-0",
"F": 0,
"Name1": "Nitrogen",
"Name2": "n-Pentane",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.419029041,
"gammaV": 1.078877166
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "7727-37-9",
"CAS2": "78-78-4",
"F": 0,
"Name1": "Nitrogen",
"Name2": "Isopentane",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.38177077,
"gammaV": 1.154135439
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "7727-37-9",
"CAS2": "110-54-3",
"F": 0,
"Name1": "Nitrogen",
"Name2": "n-Hexane",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.472607971,
"gammaV": 1.195952177
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "7727-37-9",
"CAS2": "142-82-5",
"F": 0,
"Name1": "Nitrogen",
"Name2": "n-Heptane",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.520975334,
"gammaV": 1.40455409
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "7727-37-9",
"CAS2": "111-65-9",
"F": 0,
"Name1": "Nitrogen",
"Name2": "n-Octane",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.733280051,
"gammaV": 1.186067025
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "7727-37-9",
"CAS2": "111-84-2",
"F": 0,
"Name1": "Nitrogen",
"Name2": "n-Nonane",
"betaT": 0.95637945,
"betaV": 1.0,
"gammaT": 1.749119996,
"gammaV": 1.100405929
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "7727-37-9",
"CAS2": "124-18-5",
"F": 0,
"Name1": "Nitrogen",
"Name2": "n-Decane",
"betaT": 0.957934447,
"betaV": 1.0,
"gammaT": 1.822157123,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "7727-37-9",
"CAS2": "1333-74-0",
"F": 0,
"Name1": "Nitrogen",
"Name2": "Hydrogen",
"betaT": 0.946134337,
"betaV": 0.972532065,
"gammaT": 1.175696583,
"gammaV": 0.970115357
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "7727-37-9",
"CAS2": "630-08-0",
"F": 0,
"Name1": "Nitrogen",
"Name2": "CarbonMonoxide",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 0.993425388,
"gammaV": 1.008690943
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "7727-37-9",
"CAS2": "7732-18-5",
"F": 0,
"Name1": "Nitrogen",
"Name2": "Water",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 0.968808467,
"gammaV": 1.094749685
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "7727-37-9",
"CAS2": "7782-44-7",
"F": 0,
"Name1": "Nitrogen",
"Name2": "Oxygen",
"betaT": 0.997190589,
"betaV": 0.99952177,
"gammaT": 0.995157044,
"gammaV": 0.997082328
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "7727-37-9",
"CAS2": "7783-06-4",
"F": 0,
"Name1": "Nitrogen",
"Name2": "HydrogenSulfide",
"betaT": 1.004692366,
"betaV": 0.910394249,
"gammaT": 0.9601742,
"gammaV": 1.256844157
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "7727-37-9",
"CAS2": "7440-59-7",
"F": 0,
"Name1": "Nitrogen",
"Name2": "Helium",
"betaT": 0.692868765,
"betaV": 0.969501055,
"gammaT": 1.47183158,
"gammaV": 0.932629867
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "7727-37-9",
"CAS2": "7440-37-1",
"F": 0,
"Name1": "Nitrogen",
"Name2": "Argon",
"betaT": 0.999069843,
"betaV": 1.004166412,
"gammaT": 0.990034831,
"gammaV": 1.002212182
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "124-38-9",
"CAS2": "74-84-0",
"F": 0,
"Name1": "CarbonDioxide",
"Name2": "Ethane",
"betaT": 1.013871147,
"betaV": 1.002525718,
"gammaT": 0.90094953,
"gammaV": 1.032876701
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "124-38-9",
"CAS2": "74-98-6",
"F": 0,
"Name1": "CarbonDioxide",
"Name2": "Propane",
"betaT": 1.033620538,
"betaV": 0.996898004,
"gammaT": 0.908772477,
"gammaV": 1.047596298
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "124-38-9",
"CAS2": "106-97-8",
"F": 0,
"Name1": "CarbonDioxide",
"Name2": "n-Butane",
"betaT": 1.018171004,
"betaV": 1.174760923,
"gammaT": 0.911498231,
"gammaV": 1.222437324
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "124-38-9",
"CAS2": "75-28-5",
"F": 0,
"Name1": "CarbonDioxide",
"Name2": "IsoButane",
"betaT": 1.023339824,
"betaV": 1.076551882,
"gammaT": 0.929982936,
"gammaV": 1.081909003
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "124-38-9",
"CAS2": "109-66-0",
"F": 0,
"Name1": "CarbonDioxide",
"Name2": "n-Pentane",
"betaT": 1.027000795,
"betaV": 1.024311498,
"gammaT": 0.979217302,
"gammaV": 1.068406078
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "124-38-9",
"CAS2": "78-78-4",
"F": 0,
"Name1": "CarbonDioxide",
"Name2": "Isopentane",
"betaT": 1.019180957,
"betaV": 1.060793104,
"gammaT": 0.961218039,
"gammaV": 1.116793198
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "124-38-9",
"CAS2": "110-54-3",
"F": 0,
"Name1": "CarbonDioxide",
"Name2": "n-Hexane",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.038675574,
"gammaV": 0.851343711
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "124-38-9",
"CAS2": "142-82-5",
"F": 0,
"Name1": "CarbonDioxide",
"Name2": "n-Heptane",
"betaT": 1.011806317,
"betaV": 1.205469976,
"gammaT": 1.046169823,
"gammaV": 1.164585914
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "124-38-9",
"CAS2": "111-65-9",
"F": 0,
"Name1": "CarbonDioxide",
"Name2": "n-Octane",
"betaT": 1.02969078,
"betaV": 1.026169373,
"gammaT": 1.074455386,
"gammaV": 1.104043935
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "124-38-9",
"CAS2": "111-84-2",
"F": 0,
"Name1": "CarbonDioxide",
"Name2": "n-Nonane",
"betaT": 1.00768862,
"betaV": 1.0,
"gammaT": 1.140671202,
"gammaV": 0.973386152
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "124-38-9",
"CAS2": "124-18-5",
"F": 0,
"Name1": "CarbonDioxide",
"Name2": "n-Decane",
"betaT": 1.02002879,
"betaV": 1.000151132,
"gammaT": 1.145512213,
"gammaV": 1.183394668
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "124-38-9",
"CAS2": "1333-74-0",
"F": 0,
"Name1": "CarbonDioxide",
"Name2": "Hydrogen",
"betaT": 0.942320195,
"betaV": 0.904142159,
"gammaT": 1.782924792,
"gammaV": 1.15279255
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "124-38-9",
"CAS2": "7782-44-7",
"F": 0,
"Name1": "CarbonDioxide",
"Name2": "Oxygen",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "124-38-9",
"CAS2": "630-08-0",
"F": 0,
"Name1": "CarbonDioxide",
"Name2": "CarbonMonoxide",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "124-38-9",
"CAS2": "7732-18-5",
"F": 0,
"Name1": "CarbonDioxide",
"Name2": "Water",
"betaT": 0.997372205,
"betaV": 0.949055959,
"gammaT": 0.775453996,
"gammaV": 1.542328793
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "124-38-9",
"CAS2": "7783-06-4",
"F": 0,
"Name1": "CarbonDioxide",
"Name2": "HydrogenSulfide",
"betaT": 1.016034583,
"betaV": 0.906630564,
"gammaT": 0.92601888,
"gammaV": 1.024085837
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "124-38-9",
"CAS2": "7440-59-7",
"F": 0,
"Name1": "CarbonDioxide",
"Name2": "Helium",
"betaT": 0.76837763,
"betaV": 0.846647561,
"gammaT": 3.207456948,
"gammaV": 0.864141549
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "124-38-9",
"CAS2": "7440-37-1",
"F": 0,
"Name1": "CarbonDioxide",
"Name2": "Argon",
"betaT": 0.996512863,
"betaV": 1.008392428,
"gammaT": 1.050971635,
"gammaV": 1.029205465
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-84-0",
"CAS2": "74-98-6",
"F": 0.13042476515,
"Name1": "Ethane",
"Name2": "Propane",
"betaT": 0.996199694,
"betaV": 0.997607277,
"function": "GeneralizedAlkane",
"gammaT": 1.01473019,
"gammaV": 1.00303472
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-84-0",
"CAS2": "106-97-8",
"F": 0.281570073085,
"Name1": "Ethane",
"Name2": "n-Butane",
"betaT": 0.999130554,
"betaV": 0.999157205,
"function": "GeneralizedAlkane",
"gammaT": 1.034832749,
"gammaV": 1.006179146
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-84-0",
"CAS2": "75-28-5",
"F": 0.260632376098,
"Name1": "Ethane",
"Name2": "IsoButane",
"betaT": 1.0,
"betaV": 1.0,
"function": "GeneralizedAlkane",
"gammaT": 1.033283811,
"gammaV": 1.006616886
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-84-0",
"CAS2": "109-66-0",
"F": 0,
"Name1": "Ethane",
"Name2": "n-Pentane",
"betaT": 0.998688946,
"betaV": 0.993851009,
"gammaT": 1.066665676,
"gammaV": 1.026085655
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-84-0",
"CAS2": "78-78-4",
"F": 0,
"Name1": "Ethane",
"Name2": "Isopentane",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.021150247,
"gammaV": 1.045439935
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-84-0",
"CAS2": "110-54-3",
"F": 0,
"Name1": "Ethane",
"Name2": "n-Hexane",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.092177796,
"gammaV": 1.169701102
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-84-0",
"CAS2": "142-82-5",
"F": 0,
"Name1": "Ethane",
"Name2": "n-Heptane",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.134532014,
"gammaV": 1.057666085
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-84-0",
"CAS2": "111-65-9",
"F": 0,
"Name1": "Ethane",
"Name2": "n-Octane",
"betaT": 0.984068272,
"betaV": 1.007469726,
"gammaT": 1.168636194,
"gammaV": 1.071917985
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-84-0",
"CAS2": "111-84-2",
"F": 0,
"Name1": "Ethane",
"Name2": "n-Nonane",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.05603303,
"gammaV": 1.14353473
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-84-0",
"CAS2": "124-18-5",
"F": 0,
"Name1": "Ethane",
"Name2": "n-Decane",
"betaT": 0.970918061,
"betaV": 0.995676258,
"gammaT": 1.237191558,
"gammaV": 1.098361281
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-84-0",
"CAS2": "1333-74-0",
"F": 0,
"Name1": "Ethane",
"Name2": "Hydrogen",
"betaT": 0.932969831,
"betaV": 0.925367171,
"gammaT": 1.902008495,
"gammaV": 1.10607204
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-84-0",
"CAS2": "7782-44-7",
"F": 0,
"Name1": "Ethane",
"Name2": "Oxygen",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-84-0",
"CAS2": "630-08-0",
"F": 0,
"Name1": "Ethane",
"Name2": "CarbonMonoxide",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.069224728,
"gammaV": 1.201417898
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-84-0",
"CAS2": "7732-18-5",
"F": 0,
"Name1": "Ethane",
"Name2": "Water",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-84-0",
"CAS2": "7783-06-4",
"F": 0,
"Name1": "Ethane",
"Name2": "HydrogenSulfide",
"betaT": 0.990197354,
"betaV": 1.010817909,
"gammaT": 0.90273666,
"gammaV": 1.030988277
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-84-0",
"CAS2": "7440-59-7",
"F": 0,
"Name1": "Ethane",
"Name2": "Helium",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-84-0",
"CAS2": "7440-37-1",
"F": 0,
"Name1": "Ethane",
"Name2": "Argon",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-98-6",
"CAS2": "106-97-8",
"F": 0.0312572600489,
"Name1": "Propane",
"Name2": "n-Butane",
"betaT": 1.000310289,
"betaV": 0.999795868,
"function": "GeneralizedAlkane",
"gammaT": 1.007392782,
"gammaV": 1.003264179
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-98-6",
"CAS2": "75-28-5",
"F": -0.0551609771024,
"Name1": "Propane",
"Name2": "IsoButane",
"betaT": 0.998012298,
"betaV": 0.999243146,
"function": "GeneralizedAlkane",
"gammaT": 1.005250774,
"gammaV": 1.001156119
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-98-6",
"CAS2": "109-66-0",
"F": 0,
"Name1": "Propane",
"Name2": "n-Pentane",
"betaT": 0.996484021,
"betaV": 1.044919431,
"gammaT": 1.008344412,
"gammaV": 1.019921513
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-98-6",
"CAS2": "78-78-4",
"F": 0,
"Name1": "Propane",
"Name2": "Isopentane",
"betaT": 0.994364425,
"betaV": 1.040459289,
"gammaT": 1.0032695,
"gammaV": 0.999432118
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-98-6",
"CAS2": "110-54-3",
"F": 0,
"Name1": "Propane",
"Name2": "n-Hexane",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.025657518,
"gammaV": 1.057872566
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-98-6",
"CAS2": "142-82-5",
"F": 0,
"Name1": "Propane",
"Name2": "n-Heptane",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.050044169,
"gammaV": 1.079648053
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-98-6",
"CAS2": "111-65-9",
"F": 0,
"Name1": "Propane",
"Name2": "n-Octane",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.063694129,
"gammaV": 1.102764612
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-98-6",
"CAS2": "111-84-2",
"F": 0,
"Name1": "Propane",
"Name2": "n-Nonane",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.109973833,
"gammaV": 1.199769134
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-98-6",
"CAS2": "124-18-5",
"F": 0,
"Name1": "Propane",
"Name2": "n-Decane",
"betaT": 0.985331233,
"betaV": 0.984104227,
"gammaT": 1.140905252,
"gammaV": 1.053040574
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-98-6",
"CAS2": "1333-74-0",
"F": 0,
"Name1": "Propane",
"Name2": "Hydrogen",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 2.308215191,
"gammaV": 1.07400611
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-98-6",
"CAS2": "7782-44-7",
"F": 0,
"Name1": "Propane",
"Name2": "Oxygen",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-98-6",
"CAS2": "630-08-0",
"F": 0,
"Name1": "Propane",
"Name2": "CarbonMonoxide",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.197564208,
"gammaV": 1.108143673
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-98-6",
"CAS2": "7732-18-5",
"F": 0,
"Name1": "Propane",
"Name2": "Water",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 0.600340961,
"gammaV": 1.011759763
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-98-6",
"CAS2": "7783-06-4",
"F": 0,
"Name1": "Propane",
"Name2": "HydrogenSulfide",
"betaT": 0.992573556,
"betaV": 0.936811219,
"gammaT": 0.905829247,
"gammaV": 1.010593999
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-98-6",
"CAS2": "7440-59-7",
"F": 0,
"Name1": "Propane",
"Name2": "Helium",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "74-98-6",
"CAS2": "7440-37-1",
"F": 0,
"Name1": "Propane",
"Name2": "Argon",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "106-97-8",
"CAS2": "75-28-5",
"F": -0.0551240293009,
"Name1": "n-Butane",
"Name2": "IsoButane",
"betaT": 1.000077547,
"betaV": 1.000880464,
"function": "GeneralizedAlkane",
"gammaT": 1.001432824,
"gammaV": 1.00041444
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "106-97-8",
"CAS2": "109-66-0",
"F": 0,
"Name1": "n-Butane",
"Name2": "n-Pentane",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.00214364,
"gammaV": 1.01815965
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "106-97-8",
"CAS2": "78-78-4",
"F": 0,
"Name1": "n-Butane",
"Name2": "Isopentane",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.000792201,
"gammaV": 1.002728434
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "106-97-8",
"CAS2": "110-54-3",
"F": 0,
"Name1": "n-Butane",
"Name2": "n-Hexane",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.00915706,
"gammaV": 1.034995284
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "106-97-8",
"CAS2": "142-82-5",
"F": 0,
"Name1": "n-Butane",
"Name2": "n-Heptane",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.021283378,
"gammaV": 1.019174227
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "106-97-8",
"CAS2": "111-65-9",
"F": 0,
"Name1": "n-Butane",
"Name2": "n-Octane",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.033180106,
"gammaV": 1.046905515
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "106-97-8",
"CAS2": "111-84-2",
"F": 0,
"Name1": "n-Butane",
"Name2": "n-Nonane",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.014096448,
"gammaV": 1.049219137
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "106-97-8",
"CAS2": "124-18-5",
"F": 0,
"Name1": "n-Butane",
"Name2": "n-Decane",
"betaT": 0.993688386,
"betaV": 0.976951968,
"gammaT": 1.076466918,
"gammaV": 1.027845529
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "106-97-8",
"CAS2": "1333-74-0",
"F": 0,
"Name1": "n-Butane",
"Name2": "Hydrogen",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 2.509259945,
"gammaV": 1.232939523
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "106-97-8",
"CAS2": "7782-44-7",
"F": 0,
"Name1": "n-Butane",
"Name2": "Oxygen",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "106-97-8",
"CAS2": "630-08-0",
"F": 0,
"Name1": "n-Butane",
"Name2": "CarbonMonoxide",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.173916162,
"gammaV": 1.084740904
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "106-97-8",
"CAS2": "7732-18-5",
"F": 0,
"Name1": "n-Butane",
"Name2": "Water",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 0.615512682,
"gammaV": 1.223638763
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "106-97-8",
"CAS2": "7783-06-4",
"F": 0,
"Name1": "n-Butane",
"Name2": "HydrogenSulfide",
"betaT": 0.985962886,
"betaV": 0.908113163,
"gammaT": 0.926156602,
"gammaV": 1.033366041
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "106-97-8",
"CAS2": "7440-59-7",
"F": 0,
"Name1": "n-Butane",
"Name2": "Helium",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "106-97-8",
"CAS2": "7440-37-1",
"F": 0,
"Name1": "n-Butane",
"Name2": "Argon",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.245039498,
"gammaV": 1.214638734
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "75-28-5",
"CAS2": "109-66-0",
"F": 0,
"Name1": "IsoButane",
"Name2": "n-Pentane",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.002495889,
"gammaV": 1.002779804
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "75-28-5",
"CAS2": "78-78-4",
"F": 0,
"Name1": "IsoButane",
"Name2": "Isopentane",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.001835788,
"gammaV": 1.002284353
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "75-28-5",
"CAS2": "110-54-3",
"F": 0,
"Name1": "IsoButane",
"Name2": "n-Hexane",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.006018054,
"gammaV": 1.010493989
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "75-28-5",
"CAS2": "142-82-5",
"F": 0,
"Name1": "IsoButane",
"Name2": "n-Heptane",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.00988576,
"gammaV": 1.021668316
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "75-28-5",
"CAS2": "111-65-9",
"F": 0,
"Name1": "IsoButane",
"Name2": "n-Octane",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.013945424,
"gammaV": 1.032807063
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "75-28-5",
"CAS2": "111-84-2",
"F": 0,
"Name1": "IsoButane",
"Name2": "n-Nonane",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.017817492,
"gammaV": 1.047298475
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "75-28-5",
"CAS2": "124-18-5",
"F": 0,
"Name1": "IsoButane",
"Name2": "n-Decane",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.021624748,
"gammaV": 1.060243344
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "75-28-5",
"CAS2": "1333-74-0",
"F": 0,
"Name1": "IsoButane",
"Name2": "Hydrogen",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.895305393,
"gammaV": 1.147595688
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "75-28-5",
"CAS2": "7782-44-7",
"F": 0,
"Name1": "IsoButane",
"Name2": "Oxygen",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "75-28-5",
"CAS2": "630-08-0",
"F": 0,
"Name1": "IsoButane",
"Name2": "CarbonMonoxide",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.161390082,
"gammaV": 1.087272232
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "75-28-5",
"CAS2": "7732-18-5",
"F": 0,
"Name1": "IsoButane",
"Name2": "Water",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "75-28-5",
"CAS2": "7783-06-4",
"F": 0,
"Name1": "IsoButane",
"Name2": "HydrogenSulfide",
"betaT": 0.974550548,
"betaV": 1.012994431,
"gammaT": 0.937130844,
"gammaV": 0.988591117
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "75-28-5",
"CAS2": "7440-59-7",
"F": 0,
"Name1": "IsoButane",
"Name2": "Helium",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "75-28-5",
"CAS2": "7440-37-1",
"F": 0,
"Name1": "IsoButane",
"Name2": "Argon",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "109-66-0",
"CAS2": "78-78-4",
"F": 0,
"Name1": "n-Pentane",
"Name2": "Isopentane",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.000050537,
"gammaV": 1.000024335
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "109-66-0",
"CAS2": "110-54-3",
"F": 0,
"Name1": "n-Pentane",
"Name2": "n-Hexane",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.000761237,
"gammaV": 1.002480637
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "109-66-0",
"CAS2": "142-82-5",
"F": 0,
"Name1": "n-Pentane",
"Name2": "n-Heptane",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.002441051,
"gammaV": 1.008972412
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "109-66-0",
"CAS2": "111-65-9",
"F": 0,
"Name1": "n-Pentane",
"Name2": "n-Octane",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.016422347,
"gammaV": 1.069223964
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "109-66-0",
"CAS2": "111-84-2",
"F": 0,
"Name1": "n-Pentane",
"Name2": "n-Nonane",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.103421755,
"gammaV": 1.034910633
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "109-66-0",
"CAS2": "124-18-5",
"F": 0,
"Name1": "n-Pentane",
"Name2": "n-Decane",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.049035838,
"gammaV": 1.016370338
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "109-66-0",
"CAS2": "1333-74-0",
"F": 0,
"Name1": "n-Pentane",
"Name2": "Hydrogen",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 2.013859174,
"gammaV": 1.188334783
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "109-66-0",
"CAS2": "7782-44-7",
"F": 0,
"Name1": "n-Pentane",
"Name2": "Oxygen",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "109-66-0",
"CAS2": "630-08-0",
"F": 0,
"Name1": "n-Pentane",
"Name2": "CarbonMonoxide",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.206043295,
"gammaV": 1.119954454
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "109-66-0",
"CAS2": "7732-18-5",
"F": 0,
"Name1": "n-Pentane",
"Name2": "Water",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 0.447666011,
"gammaV": 0.95667731
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "109-66-0",
"CAS2": "7783-06-4",
"F": 0,
"Name1": "n-Pentane",
"Name2": "HydrogenSulfide",
"betaT": 0.962006651,
"betaV": 0.984613203,
"gammaT": 0.959065662,
"gammaV": 1.076539234
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "109-66-0",
"CAS2": "7440-59-7",
"F": 0,
"Name1": "n-Pentane",
"Name2": "Helium",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "109-66-0",
"CAS2": "7440-37-1",
"F": 0,
"Name1": "n-Pentane",
"Name2": "Argon",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "78-78-4",
"CAS2": "110-54-3",
"F": 0,
"Name1": "Isopentane",
"Name2": "n-Hexane",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.001204174,
"gammaV": 1.002995876
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "78-78-4",
"CAS2": "142-82-5",
"F": 0,
"Name1": "Isopentane",
"Name2": "n-Heptane",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.003194615,
"gammaV": 1.009928206
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "78-78-4",
"CAS2": "111-65-9",
"F": 0,
"Name1": "Isopentane",
"Name2": "n-Octane",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.00564748,
"gammaV": 1.017880545
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "78-78-4",
"CAS2": "111-84-2",
"F": 0,
"Name1": "Isopentane",
"Name2": "n-Nonane",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.008191499,
"gammaV": 1.028994325
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "78-78-4",
"CAS2": "124-18-5",
"F": 0,
"Name1": "Isopentane",
"Name2": "n-Decane",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.010825138,
"gammaV": 1.039372957
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "78-78-4",
"CAS2": "1333-74-0",
"F": 0,
"Name1": "Isopentane",
"Name2": "Hydrogen",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.996386669,
"gammaV": 1.184340443
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "78-78-4",
"CAS2": "7782-44-7",
"F": 0,
"Name1": "Isopentane",
"Name2": "Oxygen",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "78-78-4",
"CAS2": "630-08-0",
"F": 0,
"Name1": "Isopentane",
"Name2": "CarbonMonoxide",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.199326059,
"gammaV": 1.116694577
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "78-78-4",
"CAS2": "7732-18-5",
"F": 0,
"Name1": "Isopentane",
"Name2": "Water",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "78-78-4",
"CAS2": "7783-06-4",
"F": 0,
"Name1": "Isopentane",
"Name2": "HydrogenSulfide",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 0.982651529,
"gammaV": 0.835763343
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "78-78-4",
"CAS2": "7440-59-7",
"F": 0,
"Name1": "Isopentane",
"Name2": "Helium",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "78-78-4",
"CAS2": "7440-37-1",
"F": 0,
"Name1": "Isopentane",
"Name2": "Argon",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "110-54-3",
"CAS2": "142-82-5",
"F": 0,
"Name1": "n-Hexane",
"Name2": "n-Heptane",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 0.999762786,
"gammaV": 1.001508227
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "110-54-3",
"CAS2": "111-65-9",
"F": 0,
"Name1": "n-Hexane",
"Name2": "n-Octane",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.001633952,
"gammaV": 1.006268954
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "110-54-3",
"CAS2": "111-84-2",
"F": 0,
"Name1": "n-Hexane",
"Name2": "n-Nonane",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.055369591,
"gammaV": 1.02076168
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "110-54-3",
"CAS2": "124-18-5",
"F": 0,
"Name1": "n-Hexane",
"Name2": "n-Decane",
"betaT": 0.99764101,
"betaV": 1.001516371,
"gammaT": 1.028939539,
"gammaV": 1.013511439
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "110-54-3",
"CAS2": "1333-74-0",
"F": 0,
"Name1": "n-Hexane",
"Name2": "Hydrogen",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 3.021197546,
"gammaV": 1.243461678
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "110-54-3",
"CAS2": "7782-44-7",
"F": 0,
"Name1": "n-Hexane",
"Name2": "Oxygen",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "110-54-3",
"CAS2": "630-08-0",
"F": 0,
"Name1": "n-Hexane",
"Name2": "CarbonMonoxide",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.233272781,
"gammaV": 1.155145836
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "110-54-3",
"CAS2": "7732-18-5",
"F": 0,
"Name1": "n-Hexane",
"Name2": "Water",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 0.569681333,
"gammaV": 1.170217596
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "110-54-3",
"CAS2": "7783-06-4",
"F": 0,
"Name1": "n-Hexane",
"Name2": "HydrogenSulfide",
"betaT": 0.985891113,
"betaV": 0.754473958,
"gammaT": 0.956075596,
"gammaV": 1.339283552
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "110-54-3",
"CAS2": "7440-59-7",
"F": 0,
"Name1": "n-Hexane",
"Name2": "Helium",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "110-54-3",
"CAS2": "7440-37-1",
"F": 0,
"Name1": "n-Hexane",
"Name2": "Argon",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "142-82-5",
"CAS2": "111-65-9",
"F": 0,
"Name1": "n-Heptane",
"Name2": "n-Octane",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 0.998793111,
"gammaV": 1.006767176
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "142-82-5",
"CAS2": "111-84-2",
"F": 0,
"Name1": "n-Heptane",
"Name2": "n-Nonane",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.001150096,
"gammaV": 1.001370076
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "142-82-5",
"CAS2": "124-18-5",
"F": 0,
"Name1": "n-Heptane",
"Name2": "n-Decane",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.002229938,
"gammaV": 1.002972346
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "142-82-5",
"CAS2": "1333-74-0",
"F": 0,
"Name1": "n-Heptane",
"Name2": "Hydrogen",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 3.169143057,
"gammaV": 1.159131722
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "142-82-5",
"CAS2": "7782-44-7",
"F": 0,
"Name1": "n-Heptane",
"Name2": "Oxygen",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "142-82-5",
"CAS2": "630-08-0",
"F": 0,
"Name1": "n-Heptane",
"Name2": "CarbonMonoxide",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.256123503,
"gammaV": 1.190354273
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "142-82-5",
"CAS2": "7732-18-5",
"F": 0,
"Name1": "n-Heptane",
"Name2": "Water",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "142-82-5",
"CAS2": "7783-06-4",
"F": 0,
"Name1": "n-Heptane",
"Name2": "HydrogenSulfide",
"betaT": 0.988937417,
"betaV": 0.828967164,
"gammaT": 1.013453092,
"gammaV": 1.087956749
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "142-82-5",
"CAS2": "7440-59-7",
"F": 0,
"Name1": "n-Heptane",
"Name2": "Helium",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "142-82-5",
"CAS2": "7440-37-1",
"F": 0,
"Name1": "n-Heptane",
"Name2": "Argon",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "111-65-9",
"CAS2": "111-84-2",
"F": 0,
"Name1": "n-Octane",
"Name2": "n-Nonane",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.000235044,
"gammaV": 1.001357085
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "111-65-9",
"CAS2": "124-18-5",
"F": 0,
"Name1": "n-Octane",
"Name2": "n-Decane",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.007186267,
"gammaV": 1.002553544
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "111-65-9",
"CAS2": "1333-74-0",
"F": 0,
"Name1": "n-Octane",
"Name2": "Hydrogen",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 2.191555216,
"gammaV": 1.305249405
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "111-65-9",
"CAS2": "7782-44-7",
"F": 0,
"Name1": "n-Octane",
"Name2": "Oxygen",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "111-65-9",
"CAS2": "630-08-0",
"F": 0,
"Name1": "n-Octane",
"Name2": "CarbonMonoxide",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.276565536,
"gammaV": 1.219206702
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "111-65-9",
"CAS2": "7732-18-5",
"F": 0,
"Name1": "n-Octane",
"Name2": "Water",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 0.662072469,
"gammaV": 0.599484191
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "111-65-9",
"CAS2": "7783-06-4",
"F": 0,
"Name1": "n-Octane",
"Name2": "HydrogenSulfide",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "111-65-9",
"CAS2": "7440-59-7",
"F": 0,
"Name1": "n-Octane",
"Name2": "Helium",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "111-65-9",
"CAS2": "7440-37-1",
"F": 0,
"Name1": "n-Octane",
"Name2": "Argon",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "111-84-2",
"CAS2": "124-18-5",
"F": 0,
"Name1": "n-Nonane",
"Name2": "n-Decane",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.000182392,
"gammaV": 1.00081052
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "111-84-2",
"CAS2": "1333-74-0",
"F": 0,
"Name1": "n-Nonane",
"Name2": "Hydrogen",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 2.23435404,
"gammaV": 1.342647661
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "111-84-2",
"CAS2": "7782-44-7",
"F": 0,
"Name1": "n-Nonane",
"Name2": "Oxygen",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "111-84-2",
"CAS2": "630-08-0",
"F": 0,
"Name1": "n-Nonane",
"Name2": "CarbonMonoxide",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.294070556,
"gammaV": 1.252151449
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "111-84-2",
"CAS2": "7732-18-5",
"F": 0,
"Name1": "n-Nonane",
"Name2": "Water",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "111-84-2",
"CAS2": "7783-06-4",
"F": 0,
"Name1": "n-Nonane",
"Name2": "HydrogenSulfide",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.086557826,
"gammaV": 1.082905109
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "111-84-2",
"CAS2": "7440-59-7",
"F": 0,
"Name1": "n-Nonane",
"Name2": "Helium",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "111-84-2",
"CAS2": "7440-37-1",
"F": 0,
"Name1": "n-Nonane",
"Name2": "Argon",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "124-18-5",
"CAS2": "1333-74-0",
"F": 0,
"Name1": "n-Decane",
"Name2": "Hydrogen",
"betaT": 1.064818089,
"betaV": 1.695358382,
"gammaT": 3.786003724,
"gammaV": 1.120233729
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "124-18-5",
"CAS2": "7782-44-7",
"F": 0,
"Name1": "n-Decane",
"Name2": "Oxygen",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "124-18-5",
"CAS2": "630-08-0",
"F": 0,
"Name1": "n-Decane",
"Name2": "CarbonMonoxide",
"betaT": 1.049594632,
"betaV": 1.0,
"gammaT": 1.803567587,
"gammaV": 0.87018496
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "124-18-5",
"CAS2": "7732-18-5",
"F": 0,
"Name1": "n-Decane",
"Name2": "Water",
"betaT": 0.897162268,
"betaV": 1.0,
"gammaT": 0.740416402,
"gammaV": 0.551405318
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "124-18-5",
"CAS2": "7783-06-4",
"F": 0,
"Name1": "n-Decane",
"Name2": "HydrogenSulfide",
"betaT": 0.973091413,
"betaV": 0.975187766,
"gammaT": 1.103693489,
"gammaV": 1.171714677
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "124-18-5",
"CAS2": "7440-59-7",
"F": 0,
"Name1": "n-Decane",
"Name2": "Helium",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "124-18-5",
"CAS2": "7440-37-1",
"F": 0,
"Name1": "n-Decane",
"Name2": "Argon",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "1333-74-0",
"CAS2": "7782-44-7",
"F": 0,
"Name1": "Hydrogen",
"Name2": "Oxygen",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "1333-74-0",
"CAS2": "630-08-0",
"F": 0,
"Name1": "Hydrogen",
"Name2": "CarbonMonoxide",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.377504607,
"gammaV": 1.121416201
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "1333-74-0",
"CAS2": "7732-18-5",
"F": 0,
"Name1": "Hydrogen",
"Name2": "Water",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "1333-74-0",
"CAS2": "7783-06-4",
"F": 0,
"Name1": "Hydrogen",
"Name2": "HydrogenSulfide",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "1333-74-0",
"CAS2": "7440-59-7",
"F": 0,
"Name1": "Hydrogen",
"Name2": "Helium",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "1333-74-0",
"CAS2": "7440-37-1",
"F": 0,
"Name1": "Hydrogen",
"Name2": "Argon",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "7782-44-7",
"CAS2": "630-08-0",
"F": 0,
"Name1": "Oxygen",
"Name2": "CarbonMonoxide",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "7782-44-7",
"CAS2": "7732-18-5",
"F": 0,
"Name1": "Oxygen",
"Name2": "Water",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 0.964767932,
"gammaV": 1.143174289
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "7782-44-7",
"CAS2": "7783-06-4",
"F": 0,
"Name1": "Oxygen",
"Name2": "HydrogenSulfide",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "7782-44-7",
"CAS2": "7440-59-7",
"F": 0,
"Name1": "Oxygen",
"Name2": "Helium",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "7782-44-7",
"CAS2": "7440-37-1",
"F": 0,
"Name1": "Oxygen",
"Name2": "Argon",
"betaT": 1.000023103,
"betaV": 0.999746847,
"gammaT": 0.990430423,
"gammaV": 0.993907223
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "630-08-0",
"CAS2": "7732-18-5",
"F": 0,
"Name1": "CarbonMonoxide",
"Name2": "Water",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "630-08-0",
"CAS2": "7783-06-4",
"F": 0,
"Name1": "CarbonMonoxide",
"Name2": "HydrogenSulfide",
"betaT": 1.025536736,
"betaV": 0.795660392,
"gammaT": 1.022749748,
"gammaV": 1.101731308
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "630-08-0",
"CAS2": "7440-59-7",
"F": 0,
"Name1": "CarbonMonoxide",
"Name2": "Helium",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "630-08-0",
"CAS2": "7440-37-1",
"F": 0,
"Name1": "CarbonMonoxide",
"Name2": "Argon",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 0.954215746,
"gammaV": 1.159720623
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "7732-18-5",
"CAS2": "7783-06-4",
"F": 0,
"Name1": "Water",
"Name2": "HydrogenSulfide",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 0.940587083,
"gammaV": 1.014832832
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "7732-18-5",
"CAS2": "7440-59-7",
"F": 0,
"Name1": "Water",
"Name2": "Helium",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "7732-18-5",
"CAS2": "7440-37-1",
"F": 0,
"Name1": "Water",
"Name2": "Argon",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.070941866,
"gammaV": 1.038993495
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "7783-06-4",
"CAS2": "7440-59-7",
"F": 0,
"Name1": "HydrogenSulfide",
"Name2": "Helium",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "7783-06-4",
"CAS2": "7440-37-1",
"F": 0,
"Name1": "HydrogenSulfide",
"Name2": "Argon",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "Kunz-JCED-2012",
"CAS1": "7440-59-7",
"CAS2": "7440-37-1",
"F": 0,
"Name1": "Helium",
"Name2": "Argon",
"betaT": 1.0,
"betaV": 1.0,
"gammaT": 1.0,
"gammaV": 1.0
},
{
"BibTeX": "From REFPROP 9.1 with permission",
"CAS1": "64-17-5",
"CAS2": "7732-18-5",
"F": 0.3285109,
"Name1": "Ethanol",
"Name2": "Water",
"betaT": 0.971761,
"betaV": 1.0624092,
"function": "Ethanol-Water",
"gammaT": 0.93996768,
"gammaV": 0.8687762
},
{
"BibTeX": "Lemmon-JPCRD-2000",
"CAS1": "7727-37-9",
"CAS2": "7440-37-1",
"F": 1.121527,
"Name1": "Nitrogen",
"Name2": "Argon",
"function": "GeneralizedAirComponents",
"xi": -1.237713,
"zeta": -7.6031e-07
},
{
"BibTeX": "Lemmon-JPCRD-2000",
"CAS1": "7727-37-9",
"CAS2": "7782-44-7",
"F": 1.0,
"Name1": "Nitrogen",
"Name2": "Oxygen",
"function": "GeneralizedAirComponents",
"xi": -0.85635,
"zeta": -4.1847e-07
},
{
"BibTeX": "Lemmon-JPCRD-2000",
"CAS1": "7440-37-1",
"CAS2": "7782-44-7",
"F": 0.597203,
"Name1": "Argon",
"Name2": "Oxygen",
"function": "GeneralizedAirComponents",
"xi": -2.115126,
"zeta": -4.1232e-07
},
{
"BibTeX": "Akasaka-Purdue-2014",
"CAS1": "811-97-2",
"CAS2": "460-73-1",
"F": 0.107754,
"Name1": "R134a",
"Name2": "R245fa",
"betaT": 1,
"betaV": 0.992025,
"function": "Methane-Ethane",
"gammaT": 1.00643,
"gammaV": 1
},
{
"BibTeX": "Akasaka-FPE-2013",
"CAS1": "75-10-5",
"CAS2": "754-12-1",
"F": -0.277708,
"Name1": "R32",
"Name2": "R1234yf",
"betaT": 1.00052,
"betaV": 0.993346,
"function": "Methane-CarbonDioxide",
"gammaT": 0.948538,
"gammaV": 1.02211
},
{
"BibTeX": "Akasaka-FPE-2013",
"CAS1": "75-10-5",
"CAS2": "29118-24-9",
"F": -0.265419,
"Name1": "R32",
"Name2": "R1234ze(E)",
"betaT": 1.00343,
"betaV": 1.00586,
"function": "Methane-Propane",
"gammaT": 0.977857,
"gammaV": 0.982707
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "106-98-9",
"CAS2": "67-64-1",
"F": 0.0,
"Name1": "1BUTENE",
"Name2": "ACETONE",
"betaT": 1.01475,
"betaV": 1.0,
"gammaT": 0.95623,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "106-98-9",
"CAS2": "106-97-8",
"F": 0.0,
"Name1": "1BUTENE",
"Name2": "BUTANE",
"betaT": 1.00154,
"betaV": 1.0,
"gammaT": 0.99777,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "106-98-9",
"CAS2": "355-25-9",
"F": 0.0,
"Name1": "1BUTENE",
"Name2": "C4F10",
"betaT": 1.06345,
"betaV": 1.0,
"gammaT": 0.86402,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "106-98-9",
"CAS2": "124-38-9",
"F": 0.0,
"Name1": "1BUTENE",
"Name2": "CO2",
"betaT": 0.98059,
"betaV": 1.0,
"gammaT": 0.96751,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "106-98-9",
"CAS2": "115-10-6",
"F": 0.0,
"Name1": "1BUTENE",
"Name2": "DME",
"betaT": 0.99767,
"betaV": 1.0,
"gammaT": 0.98081,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "106-98-9",
"CAS2": "74-85-1",
"F": 0.0,
"Name1": "1BUTENE",
"Name2": "ETHYLENE",
"betaT": 1.00327,
"betaV": 1.0,
"gammaT": 1.0557,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "106-98-9",
"CAS2": "115-07-1",
"F": 0.0,
"Name1": "1BUTENE",
"Name2": "PROPYLEN",
"betaT": 1.00018,
"betaV": 1.0,
"gammaT": 1.00725,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "106-98-9",
"CAS2": "116-15-4",
"F": 0.0,
"Name1": "1BUTENE",
"Name2": "R1216",
"betaT": 1.01733,
"betaV": 1.0,
"gammaT": 0.92312,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "106-98-9",
"CAS2": "75-10-5",
"F": 0.0,
"Name1": "1BUTENE",
"Name2": "R32",
"betaT": 0.98014,
"betaV": 1.0,
"gammaT": 0.85398,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "67-64-1",
"CAS2": "71-43-2",
"F": 0.0,
"Name1": "ACETONE",
"Name2": "BENZENE",
"betaT": 0.9982,
"betaV": 1.0,
"gammaT": 0.98198,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "67-64-1",
"CAS2": "106-97-8",
"F": 0.0,
"Name1": "ACETONE",
"Name2": "BUTANE",
"betaT": 0.98364,
"betaV": 1.0,
"gammaT": 0.93303,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "67-64-1",
"CAS2": "112-40-3",
"F": 0.0,
"Name1": "ACETONE",
"Name2": "C12",
"betaT": 1.0322,
"betaV": 1.0,
"gammaT": 0.99897,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "67-64-1",
"CAS2": "629-59-4",
"F": 0.0,
"Name1": "ACETONE",
"Name2": "C14",
"betaT": 1.02803,
"betaV": 1.0,
"gammaT": 1.02375,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "67-64-1",
"CAS2": "590-18-1",
"F": 0.0,
"Name1": "ACETONE",
"Name2": "C2BUTENE",
"betaT": 0.98583,
"betaV": 1.0,
"gammaT": 0.95209,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "67-64-1",
"CAS2": "124-38-9",
"F": 0.0,
"Name1": "ACETONE",
"Name2": "CO2",
"betaT": 1.01322,
"betaV": 1.0,
"gammaT": 1.0805,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "67-64-1",
"CAS2": "110-82-7",
"F": 0.0,
"Name1": "ACETONE",
"Name2": "CYCLOHEX",
"betaT": 0.9912,
"betaV": 1.0,
"gammaT": 0.92123,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "67-64-1",
"CAS2": "124-18-5",
"F": 0.0,
"Name1": "ACETONE",
"Name2": "DECANE",
"betaT": 1.02395,
"betaV": 1.0,
"gammaT": 0.96708,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "67-64-1",
"CAS2": "60-29-7",
"F": 0.0,
"Name1": "ACETONE",
"Name2": "DEE",
"betaT": 0.99001,
"betaV": 1.0,
"gammaT": 0.97127,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "67-64-1",
"CAS2": "616-38-6",
"F": 0.0,
"Name1": "ACETONE",
"Name2": "DMC",
"betaT": 0.997,
"betaV": 1.0,
"gammaT": 0.99989,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "67-64-1",
"CAS2": "74-84-0",
"F": 0.0,
"Name1": "ACETONE",
"Name2": "ETHANE",
"betaT": 0.96779,
"betaV": 1.0,
"gammaT": 1.0142,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "67-64-1",
"CAS2": "64-17-5",
"F": 0.0,
"Name1": "ACETONE",
"Name2": "ETHANOL",
"betaT": 1.0035,
"betaV": 1.0,
"gammaT": 0.9739,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "67-64-1",
"CAS2": "74-85-1",
"F": 0.0,
"Name1": "ACETONE",
"Name2": "ETHYLENE",
"betaT": 0.99223,
"betaV": 1.0,
"gammaT": 1.10077,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "67-64-1",
"CAS2": "7783-06-4",
"F": 0.0,
"Name1": "ACETONE",
"Name2": "H2S",
"betaT": 0.95958,
"betaV": 1.0,
"gammaT": 1.04871,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "67-64-1",
"CAS2": "142-82-5",
"F": 0.0,
"Name1": "ACETONE",
"Name2": "HEPTANE",
"betaT": 1.01173,
"betaV": 1.0,
"gammaT": 0.92544,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "67-64-1",
"CAS2": "110-54-3",
"F": 0.0,
"Name1": "ACETONE",
"Name2": "HEXANE",
"betaT": 1.00129,
"betaV": 1.0,
"gammaT": 0.91955,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "67-64-1",
"CAS2": "115-11-7",
"F": 0.0,
"Name1": "ACETONE",
"Name2": "IBUTENE",
"betaT": 0.98616,
"betaV": 1.0,
"gammaT": 0.95994,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "67-64-1",
"CAS2": "540-84-1",
"F": 0.0,
"Name1": "ACETONE",
"Name2": "IOCTANE",
"betaT": 1.00451,
"betaV": 1.0,
"gammaT": 0.93534,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "67-64-1",
"CAS2": "75-28-5",
"F": 0.0,
"Name1": "ACETONE",
"Name2": "ISOBUTAN",
"betaT": 0.98302,
"betaV": 1.0,
"gammaT": 0.93551,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "67-64-1",
"CAS2": "67-56-1",
"F": 0.0,
"Name1": "ACETONE",
"Name2": "METHANOL",
"betaT": 0.99906,
"betaV": 1.0,
"gammaT": 0.97135,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "67-64-1",
"CAS2": "111-84-2",
"F": 0.0,
"Name1": "ACETONE",
"Name2": "NONANE",
"betaT": 1.01457,
"betaV": 1.0,
"gammaT": 0.9428,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "67-64-1",
"CAS2": "109-66-0",
"F": 0.0,
"Name1": "ACETONE",
"Name2": "PENTANE",
"betaT": 0.9945,
"betaV": 1.0,
"gammaT": 0.92363,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "67-64-1",
"CAS2": "115-07-1",
"F": 0.0,
"Name1": "ACETONE",
"Name2": "PROPYLEN",
"betaT": 0.98047,
"betaV": 1.0,
"gammaT": 0.99014,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "67-64-1",
"CAS2": "106-42-3",
"F": 0.0,
"Name1": "ACETONE",
"Name2": "PXYLENE",
"betaT": 1.0007,
"betaV": 1.0,
"gammaT": 0.9752,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "67-64-1",
"CAS2": "76-13-1",
"F": 0.0,
"Name1": "ACETONE",
"Name2": "R113",
"betaT": 0.9963,
"betaV": 1.0,
"gammaT": 0.95086,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "67-64-1",
"CAS2": "75-45-6",
"F": 0.0,
"Name1": "ACETONE",
"Name2": "R22",
"betaT": 1.04656,
"betaV": 1.0,
"gammaT": 1.07981,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "67-64-1",
"CAS2": "7446-09-5",
"F": 0.0,
"Name1": "ACETONE",
"Name2": "SO2",
"betaT": 1.0107,
"betaV": 1.0,
"gammaT": 1.10455,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "67-64-1",
"CAS2": "624-64-6",
"F": 0.0,
"Name1": "ACETONE",
"Name2": "T2BUTENE",
"betaT": 0.98504,
"betaV": 1.0,
"gammaT": 0.95011,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "67-64-1",
"CAS2": "108-88-3",
"F": 0.0,
"Name1": "ACETONE",
"Name2": "TOLUENE",
"betaT": 0.99846,
"betaV": 1.0,
"gammaT": 0.97643,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "67-64-1",
"CAS2": "7732-18-5",
"F": 0.0,
"Name1": "ACETONE",
"Name2": "WATER",
"betaT": 0.98238,
"betaV": 1.0,
"gammaT": 0.9197,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "7664-41-7",
"CAS2": "7440-37-1",
"F": 0.0,
"Name1": "AMMONIA",
"Name2": "ARGON",
"betaT": 1.03498,
"betaV": 1.0,
"gammaT": 1.06504,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "7664-41-7",
"CAS2": "71-43-2",
"F": 0.0,
"Name1": "AMMONIA",
"Name2": "BENZENE",
"betaT": 1.03065,
"betaV": 1.0,
"gammaT": 0.92822,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "7664-41-7",
"CAS2": "106-97-8",
"F": 0.0,
"Name1": "AMMONIA",
"Name2": "BUTANE",
"betaT": 1.05871,
"betaV": 1.0,
"gammaT": 0.80552,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "7664-41-7",
"CAS2": "110-54-3",
"F": 0.0,
"Name1": "AMMONIA",
"Name2": "HEXANE",
"betaT": 1.09995,
"betaV": 1.0,
"gammaT": 0.86636,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "7664-41-7",
"CAS2": "7439-90-9",
"F": 0.0,
"Name1": "AMMONIA",
"Name2": "KRYPTON",
"betaT": 0.98832,
"betaV": 1.0,
"gammaT": 0.92419,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "7664-41-7",
"CAS2": "108-38-3",
"F": 0.0,
"Name1": "AMMONIA",
"Name2": "MXYLENE",
"betaT": 1.0425,
"betaV": 1.0,
"gammaT": 0.95719,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "7664-41-7",
"CAS2": "111-65-9",
"F": 0.0,
"Name1": "AMMONIA",
"Name2": "OCTANE",
"betaT": 1.04331,
"betaV": 1.0,
"gammaT": 0.62644,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "7664-41-7",
"CAS2": "109-66-0",
"F": 0.0,
"Name1": "AMMONIA",
"Name2": "PENTANE",
"betaT": 1.09752,
"betaV": 1.0,
"gammaT": 0.8445,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "7664-41-7",
"CAS2": "74-98-6",
"F": 0.0,
"Name1": "AMMONIA",
"Name2": "PROPANE",
"betaT": 1.04145,
"betaV": 1.0,
"gammaT": 0.79017,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "7664-41-7",
"CAS2": "115-07-1",
"F": 0.0,
"Name1": "AMMONIA",
"Name2": "PROPYLEN",
"betaT": 1.02533,
"betaV": 1.0,
"gammaT": 0.84826,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "7664-41-7",
"CAS2": "74-99-7",
"F": 0.0,
"Name1": "AMMONIA",
"Name2": "PROPYNE",
"betaT": 1.00696,
"betaV": 1.0,
"gammaT": 0.94154,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "7664-41-7",
"CAS2": "354-33-6",
"F": 0.0,
"Name1": "AMMONIA",
"Name2": "R125",
"betaT": 1.04548,
"betaV": 1.0,
"gammaT": 0.96866,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "7664-41-7",
"CAS2": "75-72-9",
"F": 0.0,
"Name1": "AMMONIA",
"Name2": "R13",
"betaT": 1.03859,
"betaV": 1.0,
"gammaT": 0.76464,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "7440-37-1",
"CAS2": "71-43-2",
"F": 0.0,
"Name1": "ARGON",
"Name2": "BENZENE",
"betaT": 1.00291,
"betaV": 1.0,
"gammaT": 1.40461,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "7440-37-1",
"CAS2": "287-92-3",
"F": 0.0,
"Name1": "ARGON",
"Name2": "CYCLOPEN",
"betaT": 0.9798,
"betaV": 1.0,
"gammaT": 1.36013,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "7440-37-1",
"CAS2": "7439-90-9",
"F": 0.0,
"Name1": "ARGON",
"Name2": "KRYPTON",
"betaT": 1.0002,
"betaV": 1.0,
"gammaT": 1.0046,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "7440-37-1",
"CAS2": "463-82-1",
"F": 0.0,
"Name1": "ARGON",
"Name2": "NEOPENTN",
"betaT": 1.00019,
"betaV": 1.0,
"gammaT": 1.28707,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "7440-37-1",
"CAS2": "75-45-6",
"F": 0.0,
"Name1": "ARGON",
"Name2": "R22",
"betaT": 0.98668,
"betaV": 1.0,
"gammaT": 1.20531,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "71-43-2",
"CAS2": "106-97-8",
"F": 0.0,
"Name1": "BENZENE",
"Name2": "BUTANE",
"betaT": 0.99022,
"betaV": 1.0,
"gammaT": 0.99834,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "71-43-2",
"CAS2": "112-40-3",
"F": 0.0,
"Name1": "BENZENE",
"Name2": "C12",
"betaT": 1.00717,
"betaV": 1.0,
"gammaT": 1.02547,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "71-43-2",
"CAS2": "629-59-4",
"F": 0.0,
"Name1": "BENZENE",
"Name2": "C14",
"betaT": 0.99866,
"betaV": 1.0,
"gammaT": 1.04969,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "71-43-2",
"CAS2": "108-87-2",
"F": 0.0,
"Name1": "BENZENE",
"Name2": "C1CC6",
"betaT": 1.00452,
"betaV": 1.0,
"gammaT": 0.98159,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "71-43-2",
"CAS2": "630-08-0",
"F": 0.0,
"Name1": "BENZENE",
"Name2": "CO",
"betaT": 1.02875,
"betaV": 1.0,
"gammaT": 1.47254,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "71-43-2",
"CAS2": "124-38-9",
"F": 0.0,
"Name1": "BENZENE",
"Name2": "CO2",
"betaT": 0.99261,
"betaV": 1.0,
"gammaT": 1.03295,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "71-43-2",
"CAS2": "110-82-7",
"F": 0.0,
"Name1": "BENZENE",
"Name2": "CYCLOHEX",
"betaT": 1.00212,
"betaV": 1.0,
"gammaT": 0.97982,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "71-43-2",
"CAS2": "556-67-2",
"F": 0.0,
"Name1": "BENZENE",
"Name2": "D4",
"betaT": 1.01222,
"betaV": 1.0,
"gammaT": 0.98954,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "71-43-2",
"CAS2": "124-18-5",
"F": 0.0,
"Name1": "BENZENE",
"Name2": "DECANE",
"betaT": 1.00678,
"betaV": 1.0,
"gammaT": 0.99831,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "71-43-2",
"CAS2": "60-29-7",
"F": 0.0,
"Name1": "BENZENE",
"Name2": "DEE",
"betaT": 1.00092,
"betaV": 1.0,
"gammaT": 1.00226,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "71-43-2",
"CAS2": "616-38-6",
"F": 0.0,
"Name1": "BENZENE",
"Name2": "DMC",
"betaT": 1.00156,
"betaV": 1.0,
"gammaT": 0.98361,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "71-43-2",
"CAS2": "100-41-4",
"F": 0.0,
"Name1": "BENZENE",
"Name2": "EBENZENE",
"betaT": 0.99807,
"betaV": 1.0,
"gammaT": 1.01425,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "71-43-2",
"CAS2": "74-84-0",
"F": 0.0,
"Name1": "BENZENE",
"Name2": "ETHANE",
"betaT": 0.99662,
"betaV": 1.0,
"gammaT": 1.08163,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "71-43-2",
"CAS2": "64-17-5",
"F": 0.0,
"Name1": "BENZENE",
"Name2": "ETHANOL",
"betaT": 1.02907,
"betaV": 1.0,
"gammaT": 0.9164,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "71-43-2",
"CAS2": "7783-06-4",
"F": 0.0,
"Name1": "BENZENE",
"Name2": "H2S",
"betaT": 1.00564,
"betaV": 1.0,
"gammaT": 1.06015,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "71-43-2",
"CAS2": "142-82-5",
"F": 0.0,
"Name1": "BENZENE",
"Name2": "HEPTANE",
"betaT": 1.00775,
"betaV": 1.0,
"gammaT": 0.97482,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "71-43-2",
"CAS2": "110-54-3",
"F": 0.0,
"Name1": "BENZENE",
"Name2": "HEXANE",
"betaT": 1.0043,
"betaV": 1.0,
"gammaT": 0.97222,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "71-43-2",
"CAS2": "107-83-5",
"F": 0.0,
"Name1": "BENZENE",
"Name2": "IHEXANE",
"betaT": 1.00643,
"betaV": 1.0,
"gammaT": 0.97119,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "71-43-2",
"CAS2": "540-84-1",
"F": 0.0,
"Name1": "BENZENE",
"Name2": "IOCTANE",
"betaT": 1.00861,
"betaV": 1.0,
"gammaT": 0.96998,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "71-43-2",
"CAS2": "74-82-8",
"F": 0.0,
"Name1": "BENZENE",
"Name2": "METHANE",
"betaT": 1.0018,
"betaV": 1.0,
"gammaT": 1.29314,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "71-43-2",
"CAS2": "67-56-1",
"F": 0.0,
"Name1": "BENZENE",
"Name2": "METHANOL",
"betaT": 1.02351,
"betaV": 1.0,
"gammaT": 0.90254,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "71-43-2",
"CAS2": "108-38-3",
"F": 0.0,
"Name1": "BENZENE",
"Name2": "MXYLENE",
"betaT": 0.99896,
"betaV": 1.0,
"gammaT": 1.00464,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "71-43-2",
"CAS2": "111-84-2",
"F": 0.0,
"Name1": "BENZENE",
"Name2": "NONANE",
"betaT": 1.00489,
"betaV": 1.0,
"gammaT": 0.97411,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "71-43-2",
"CAS2": "111-65-9",
"F": 0.0,
"Name1": "BENZENE",
"Name2": "OCTANE",
"betaT": 1.00796,
"betaV": 1.0,
"gammaT": 0.98037,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "71-43-2",
"CAS2": "95-47-6",
"F": 0.0,
"Name1": "BENZENE",
"Name2": "OXYLENE",
"betaT": 1.01414,
"betaV": 1.0,
"gammaT": 1.00329,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "71-43-2",
"CAS2": "109-66-0",
"F": 0.0,
"Name1": "BENZENE",
"Name2": "PENTANE",
"betaT": 1.00187,
"betaV": 1.0,
"gammaT": 0.97605,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "71-43-2",
"CAS2": "74-98-6",
"F": 0.0,
"Name1": "BENZENE",
"Name2": "PROPANE",
"betaT": 1.0017,
"betaV": 1.0,
"gammaT": 1.01942,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "71-43-2",
"CAS2": "115-07-1",
"F": 0.0,
"Name1": "BENZENE",
"Name2": "PROPYLEN",
"betaT": 0.9973,
"betaV": 1.0,
"gammaT": 1.02876,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "71-43-2",
"CAS2": "106-42-3",
"F": 0.0,
"Name1": "BENZENE",
"Name2": "PXYLENE",
"betaT": 1.00112,
"betaV": 1.0,
"gammaT": 1.00639,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "71-43-2",
"CAS2": "76-13-1",
"F": 0.0,
"Name1": "BENZENE",
"Name2": "R113",
"betaT": 1.00372,
"betaV": 1.0,
"gammaT": 0.97215,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "71-43-2",
"CAS2": "76-14-2",
"F": 0.0,
"Name1": "BENZENE",
"Name2": "R114",
"betaT": 1.00118,
"betaV": 1.0,
"gammaT": 0.95788,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "71-43-2",
"CAS2": "75-45-6",
"F": 0.0,
"Name1": "BENZENE",
"Name2": "R22",
"betaT": 1.0106,
"betaV": 1.0,
"gammaT": 1.03496,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "71-43-2",
"CAS2": "108-88-3",
"F": 0.0,
"Name1": "BENZENE",
"Name2": "TOLUENE",
"betaT": 1.00015,
"betaV": 1.0,
"gammaT": 1.00176,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "106-97-8",
"CAS2": "629-59-4",
"F": 0.0,
"Name1": "BUTANE",
"Name2": "C14",
"betaT": 0.97985,
"betaV": 1.0,
"gammaT": 1.15977,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "106-97-8",
"CAS2": "590-18-1",
"F": 0.0,
"Name1": "BUTANE",
"Name2": "C2BUTENE",
"betaT": 0.9988,
"betaV": 1.0,
"gammaT": 0.99538,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "106-97-8",
"CAS2": "110-82-7",
"F": 0.0,
"Name1": "BUTANE",
"Name2": "CYCLOHEX",
"betaT": 1.00719,
"betaV": 1.0,
"gammaT": 1.02834,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "106-97-8",
"CAS2": "115-10-6",
"F": 0.0,
"Name1": "BUTANE",
"Name2": "DME",
"betaT": 0.99621,
"betaV": 1.0,
"gammaT": 0.96541,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "106-97-8",
"CAS2": "74-85-1",
"F": 0.0,
"Name1": "BUTANE",
"Name2": "ETHYLENE",
"betaT": 1.02263,
"betaV": 1.0,
"gammaT": 1.05892,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "106-97-8",
"CAS2": "7647-01-0",
"F": 0.0,
"Name1": "BUTANE",
"Name2": "HCL",
"betaT": 0.97018,
"betaV": 1.0,
"gammaT": 0.94381,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "106-97-8",
"CAS2": "115-11-7",
"F": 0.0,
"Name1": "BUTANE",
"Name2": "IBUTENE",
"betaT": 1.00062,
"betaV": 1.0,
"gammaT": 0.99703,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "106-97-8",
"CAS2": "112-39-0",
"F": 0.0,
"Name1": "BUTANE",
"Name2": "MPALMITA",
"betaT": 0.93827,
"betaV": 1.0,
"gammaT": 1.21149,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "106-97-8",
"CAS2": "76-13-1",
"F": 0.0,
"Name1": "BUTANE",
"Name2": "R113",
"betaT": 1.0029,
"betaV": 1.0,
"gammaT": 0.99168,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "106-97-8",
"CAS2": "354-33-6",
"F": 0.0,
"Name1": "BUTANE",
"Name2": "R125",
"betaT": 0.99482,
"betaV": 1.0,
"gammaT": 0.90412,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "106-97-8",
"CAS2": "75-72-9",
"F": 0.0,
"Name1": "BUTANE",
"Name2": "R13",
"betaT": 0.9973,
"betaV": 1.0,
"gammaT": 0.98279,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "106-97-8",
"CAS2": "811-97-2",
"F": 0.0,
"Name1": "BUTANE",
"Name2": "R134A",
"betaT": 1.00409,
"betaV": 1.0,
"gammaT": 0.89057,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "106-97-8",
"CAS2": "420-46-2",
"F": 0.0,
"Name1": "BUTANE",
"Name2": "R143A",
"betaT": 1.00093,
"betaV": 1.0,
"gammaT": 0.91912,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "106-97-8",
"CAS2": "75-37-6",
"F": 0.0,
"Name1": "BUTANE",
"Name2": "R152A",
"betaT": 1.00243,
"betaV": 1.0,
"gammaT": 0.91179,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "106-97-8",
"CAS2": "431-89-0",
"F": 0.0,
"Name1": "BUTANE",
"Name2": "R227EA",
"betaT": 1.01441,
"betaV": 1.0,
"gammaT": 0.90171,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "106-97-8",
"CAS2": "75-46-7",
"F": 0.0,
"Name1": "BUTANE",
"Name2": "R23",
"betaT": 0.97624,
"betaV": 1.0,
"gammaT": 0.89836,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "106-97-8",
"CAS2": "460-73-1",
"F": 0.0,
"Name1": "BUTANE",
"Name2": "R245FA",
"betaT": 1.01634,
"betaV": 1.0,
"gammaT": 0.90319,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "106-97-8",
"CAS2": "75-10-5",
"F": 0.0,
"Name1": "BUTANE",
"Name2": "R32",
"betaT": 0.98166,
"betaV": 1.0,
"gammaT": 0.8699,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "106-97-8",
"CAS2": "624-64-6",
"F": 0.0,
"Name1": "BUTANE",
"Name2": "T2BUTENE",
"betaT": 0.99911,
"betaV": 1.0,
"gammaT": 0.99609,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "1120-21-4",
"CAS2": "124-38-9",
"F": 0.0,
"Name1": "C11",
"Name2": "CO2",
"betaT": 0.99389,
"betaV": 1.0,
"gammaT": 1.19119,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "1120-21-4",
"CAS2": "74-84-0",
"F": 0.0,
"Name1": "C11",
"Name2": "ETHANE",
"betaT": 1.06034,
"betaV": 1.0,
"gammaT": 1.27938,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "1120-21-4",
"CAS2": "67-56-1",
"F": 0.0,
"Name1": "C11",
"Name2": "METHANOL",
"betaT": 0.90438,
"betaV": 1.0,
"gammaT": 0.95529,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "1120-21-4",
"CAS2": "108-38-3",
"F": 0.0,
"Name1": "C11",
"Name2": "MXYLENE",
"betaT": 1.0009,
"betaV": 1.0,
"gammaT": 1.00198,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "1120-21-4",
"CAS2": "95-47-6",
"F": 0.0,
"Name1": "C11",
"Name2": "OXYLENE",
"betaT": 0.9981,
"betaV": 1.0,
"gammaT": 0.99825,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "1120-21-4",
"CAS2": "106-42-3",
"F": 0.0,
"Name1": "C11",
"Name2": "PXYLENE",
"betaT": 0.99981,
"betaV": 1.0,
"gammaT": 1.0018,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "112-40-3",
"CAS2": "630-08-0",
"F": 0.0,
"Name1": "C12",
"Name2": "CO",
"betaT": 1.06881,
"betaV": 1.0,
"gammaT": 1.92729,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "112-40-3",
"CAS2": "110-82-7",
"F": 0.0,
"Name1": "C12",
"Name2": "CYCLOHEX",
"betaT": 1.0045,
"betaV": 1.0,
"gammaT": 1.04292,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "112-40-3",
"CAS2": "124-18-5",
"F": 0.0,
"Name1": "C12",
"Name2": "DECANE",
"betaT": 0.9987,
"betaV": 1.0,
"gammaT": 1.00382,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "112-40-3",
"CAS2": "74-84-0",
"F": 0.0,
"Name1": "C12",
"Name2": "ETHANE",
"betaT": 1.05041,
"betaV": 1.0,
"gammaT": 1.32514,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "112-40-3",
"CAS2": "7783-06-4",
"F": 0.0,
"Name1": "C12",
"Name2": "H2S",
"betaT": 1.01731,
"betaV": 1.0,
"gammaT": 1.17814,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "112-40-3",
"CAS2": "142-82-5",
"F": 0.0,
"Name1": "C12",
"Name2": "HEPTANE",
"betaT": 0.99911,
"betaV": 1.0,
"gammaT": 1.03014,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "112-40-3",
"CAS2": "67-56-1",
"F": 0.0,
"Name1": "C12",
"Name2": "METHANOL",
"betaT": 0.90111,
"betaV": 1.0,
"gammaT": 0.79118,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "112-40-3",
"CAS2": "10024-97-2",
"F": 0.0,
"Name1": "C12",
"Name2": "N2O",
"betaT": 1.03545,
"betaV": 1.0,
"gammaT": 1.2736,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "112-40-3",
"CAS2": "111-65-9",
"F": 0.0,
"Name1": "C12",
"Name2": "OCTANE",
"betaT": 1.00166,
"betaV": 1.0,
"gammaT": 1.0217,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "112-40-3",
"CAS2": "108-88-3",
"F": 0.0,
"Name1": "C12",
"Name2": "TOLUENE",
"betaT": 0.99508,
"betaV": 1.0,
"gammaT": 1.01727,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "629-59-4",
"CAS2": "67-56-1",
"F": 0.0,
"Name1": "C14",
"Name2": "METHANOL",
"betaT": 0.90474,
"betaV": 1.0,
"gammaT": 1.82083,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "629-59-4",
"CAS2": "74-98-6",
"F": 0.0,
"Name1": "C14",
"Name2": "PROPANE",
"betaT": 1.06681,
"betaV": 1.0,
"gammaT": 1.1558,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "108-87-2",
"CAS2": "110-82-7",
"F": 0.0,
"Name1": "C1CC6",
"Name2": "CYCLOHEX",
"betaT": 0.99923,
"betaV": 1.0,
"gammaT": 0.99987,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "108-87-2",
"CAS2": "100-41-4",
"F": 0.0,
"Name1": "C1CC6",
"Name2": "EBENZENE",
"betaT": 1.00104,
"betaV": 1.0,
"gammaT": 0.99289,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "108-87-2",
"CAS2": "74-84-0",
"F": 0.0,
"Name1": "C1CC6",
"Name2": "ETHANE",
"betaT": 1.00973,
"betaV": 1.0,
"gammaT": 1.12773,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "108-87-2",
"CAS2": "64-17-5",
"F": 0.0,
"Name1": "C1CC6",
"Name2": "ETHANOL",
"betaT": 1.02569,
"betaV": 1.0,
"gammaT": 0.9013,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "108-87-2",
"CAS2": "142-82-5",
"F": 0.0,
"Name1": "C1CC6",
"Name2": "HEPTANE",
"betaT": 0.99972,
"betaV": 1.0,
"gammaT": 0.9978,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "108-87-2",
"CAS2": "110-54-3",
"F": 0.0,
"Name1": "C1CC6",
"Name2": "HEXANE",
"betaT": 1.00014,
"betaV": 1.0,
"gammaT": 0.99759,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "108-87-2",
"CAS2": "95-47-6",
"F": 0.0,
"Name1": "C1CC6",
"Name2": "OXYLENE",
"betaT": 1.00132,
"betaV": 1.0,
"gammaT": 0.99508,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "108-87-2",
"CAS2": "109-66-0",
"F": 0.0,
"Name1": "C1CC6",
"Name2": "PENTANE",
"betaT": 1.00254,
"betaV": 1.0,
"gammaT": 1.00312,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "108-87-2",
"CAS2": "74-98-6",
"F": 0.0,
"Name1": "C1CC6",
"Name2": "PROPANE",
"betaT": 0.99917,
"betaV": 1.0,
"gammaT": 1.054,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "108-87-2",
"CAS2": "106-42-3",
"F": 0.0,
"Name1": "C1CC6",
"Name2": "PXYLENE",
"betaT": 1.00133,
"betaV": 1.0,
"gammaT": 0.99463,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "108-87-2",
"CAS2": "108-88-3",
"F": 0.0,
"Name1": "C1CC6",
"Name2": "TOLUENE",
"betaT": 0.99987,
"betaV": 1.0,
"gammaT": 0.98708,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "590-18-1",
"CAS2": "64-17-5",
"F": 0.0,
"Name1": "C2BUTENE",
"Name2": "ETHANOL",
"betaT": 1.02589,
"betaV": 1.0,
"gammaT": 0.94964,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "590-18-1",
"CAS2": "67-56-1",
"F": 0.0,
"Name1": "C2BUTENE",
"Name2": "METHANOL",
"betaT": 1.02664,
"betaV": 1.0,
"gammaT": 0.90617,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "1678-92-8",
"CAS2": "74-84-0",
"F": 0.0,
"Name1": "C3CC6",
"Name2": "ETHANE",
"betaT": 1.01912,
"betaV": 1.0,
"gammaT": 1.195,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "1678-92-8",
"CAS2": "7783-06-4",
"F": 0.0,
"Name1": "C3CC6",
"Name2": "H2S",
"betaT": 1.00425,
"betaV": 1.0,
"gammaT": 1.10114,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "1678-92-8",
"CAS2": "7727-37-9",
"F": 0.0,
"Name1": "C3CC6",
"Name2": "NITROGEN",
"betaT": 1.01206,
"betaV": 1.0,
"gammaT": 1.69332,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "1678-92-8",
"CAS2": "74-98-6",
"F": 0.0,
"Name1": "C3CC6",
"Name2": "PROPANE",
"betaT": 1.00516,
"betaV": 1.0,
"gammaT": 1.10943,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "355-25-9",
"CAS2": "124-38-9",
"F": 0.0,
"Name1": "C4F10",
"Name2": "CO2",
"betaT": 0.96003,
"betaV": 1.0,
"gammaT": 0.95201,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "355-25-9",
"CAS2": "115-10-6",
"F": 0.0,
"Name1": "C4F10",
"Name2": "DME",
"betaT": 0.95275,
"betaV": 1.0,
"gammaT": 0.86921,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "355-25-9",
"CAS2": "74-84-0",
"F": 0.0,
"Name1": "C4F10",
"Name2": "ETHANE",
"betaT": 0.97199,
"betaV": 1.0,
"gammaT": 0.97003,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "355-25-9",
"CAS2": "74-85-1",
"F": 0.0,
"Name1": "C4F10",
"Name2": "ETHYLENE",
"betaT": 0.96014,
"betaV": 1.0,
"gammaT": 0.97341,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "355-25-9",
"CAS2": "74-82-8",
"F": 0.0,
"Name1": "C4F10",
"Name2": "METHANE",
"betaT": 0.98649,
"betaV": 1.0,
"gammaT": 1.12365,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "355-25-9",
"CAS2": "74-98-6",
"F": 0.0,
"Name1": "C4F10",
"Name2": "PROPANE",
"betaT": 0.97499,
"betaV": 1.0,
"gammaT": 0.90987,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "355-25-9",
"CAS2": "406-58-6",
"F": 0.0,
"Name1": "C4F10",
"Name2": "R365MFC",
"betaT": 0.99786,
"betaV": 1.0,
"gammaT": 0.93067,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "678-26-2",
"CAS2": "109-66-0",
"F": 0.0,
"Name1": "C5F12",
"Name2": "PENTANE",
"betaT": 0.97304,
"betaV": 1.0,
"gammaT": 0.8914,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "2314-97-8",
"CAS2": "75-28-5",
"F": 0.0,
"Name1": "CF3I",
"Name2": "ISOBUTAN",
"betaT": 1.002,
"betaV": 1.0,
"gammaT": 0.98459,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "2314-97-8",
"CAS2": "7727-37-9",
"F": 0.0,
"Name1": "CF3I",
"Name2": "NITROGEN",
"betaT": 1.00123,
"betaV": 1.0,
"gammaT": 1.30226,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "2314-97-8",
"CAS2": "74-98-6",
"F": 0.0,
"Name1": "CF3I",
"Name2": "PROPANE",
"betaT": 0.99452,
"betaV": 1.0,
"gammaT": 0.98807,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "2314-97-8",
"CAS2": "29118-24-9",
"F": 0.0,
"Name1": "CF3I",
"Name2": "R1234ZE",
"betaT": 1.00346,
"betaV": 1.0,
"gammaT": 0.96604,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "2314-97-8",
"CAS2": "75-37-6",
"F": 0.0,
"Name1": "CF3I",
"Name2": "R152A",
"betaT": 0.99875,
"betaV": 1.0,
"gammaT": 0.96404,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "7782-50-5",
"CAS2": "7647-01-0",
"F": 0.0,
"Name1": "CHLORINE",
"Name2": "HCL",
"betaT": 0.99601,
"betaV": 1.0,
"gammaT": 0.96115,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "630-08-0",
"CAS2": "110-82-7",
"F": 0.0,
"Name1": "CO",
"Name2": "CYCLOHEX",
"betaT": 0.99244,
"betaV": 1.0,
"gammaT": 1.46342,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "630-08-0",
"CAS2": "64-17-5",
"F": 0.0,
"Name1": "CO",
"Name2": "ETHANOL",
"betaT": 0.91325,
"betaV": 1.0,
"gammaT": 1.69985,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "630-08-0",
"CAS2": "74-85-1",
"F": 0.0,
"Name1": "CO",
"Name2": "ETHYLENE",
"betaT": 0.96489,
"betaV": 1.0,
"gammaT": 1.09111,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "630-08-0",
"CAS2": "108-38-3",
"F": 0.0,
"Name1": "CO",
"Name2": "MXYLENE",
"betaT": 0.98439,
"betaV": 1.0,
"gammaT": 1.5975,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "630-08-0",
"CAS2": "106-42-3",
"F": 0.0,
"Name1": "CO",
"Name2": "PXYLENE",
"betaT": 0.98181,
"betaV": 1.0,
"gammaT": 1.62153,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "124-38-9",
"CAS2": "463-58-1",
"F": 0.0,
"Name1": "CO2",
"Name2": "COS",
"betaT": 1.00023,
"betaV": 1.0,
"gammaT": 0.9445,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "124-38-9",
"CAS2": "287-92-3",
"F": 0.0,
"Name1": "CO2",
"Name2": "CYCLOPEN",
"betaT": 1.01592,
"betaV": 1.0,
"gammaT": 0.98308,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "124-38-9",
"CAS2": "60-29-7",
"F": 0.0,
"Name1": "CO2",
"Name2": "DEE",
"betaT": 1.01217,
"betaV": 1.0,
"gammaT": 1.03241,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "124-38-9",
"CAS2": "115-10-6",
"F": 0.0,
"Name1": "CO2",
"Name2": "DME",
"betaT": 0.99723,
"betaV": 1.0,
"gammaT": 1.03116,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "124-38-9",
"CAS2": "100-41-4",
"F": 0.0,
"Name1": "CO2",
"Name2": "EBENZENE",
"betaT": 1.00091,
"betaV": 1.0,
"gammaT": 1.09145,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "124-38-9",
"CAS2": "74-85-1",
"F": 0.0,
"Name1": "CO2",
"Name2": "ETHYLENE",
"betaT": 1.00402,
"betaV": 1.0,
"gammaT": 0.95576,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "124-38-9",
"CAS2": "112-61-8",
"F": 0.0,
"Name1": "CO2",
"Name2": "MSTEARAT",
"betaT": 0.90151,
"betaV": 1.0,
"gammaT": 1.45262,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "124-38-9",
"CAS2": "463-82-1",
"F": 0.0,
"Name1": "CO2",
"Name2": "NEOPENTN",
"betaT": 1.02674,
"betaV": 1.0,
"gammaT": 0.9543,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "124-38-9",
"CAS2": "756-13-8",
"F": 0.0,
"Name1": "CO2",
"Name2": "NOVEC649",
"betaT": 1.04359,
"betaV": 1.0,
"gammaT": 1.03509,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "124-38-9",
"CAS2": "95-47-6",
"F": 0.0,
"Name1": "CO2",
"Name2": "OXYLENE",
"betaT": 1.00114,
"betaV": 1.0,
"gammaT": 1.10292,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "124-38-9",
"CAS2": "115-07-1",
"F": 0.0,
"Name1": "CO2",
"Name2": "PROPYLEN",
"betaT": 1.01217,
"betaV": 1.0,
"gammaT": 0.93465,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "124-38-9",
"CAS2": "106-42-3",
"F": 0.0,
"Name1": "CO2",
"Name2": "PXYLENE",
"betaT": 1.0034,
"betaV": 1.0,
"gammaT": 1.1043,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "124-38-9",
"CAS2": "76-16-4",
"F": 0.0,
"Name1": "CO2",
"Name2": "R116",
"betaT": 1.03808,
"betaV": 1.0,
"gammaT": 0.89857,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "124-38-9",
"CAS2": "75-71-8",
"F": 0.0,
"Name1": "CO2",
"Name2": "R12",
"betaT": 1.01811,
"betaV": 1.0,
"gammaT": 0.9576,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "124-38-9",
"CAS2": "116-15-4",
"F": 0.0,
"Name1": "CO2",
"Name2": "R1216",
"betaT": 1.01687,
"betaV": 1.0,
"gammaT": 0.98477,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "124-38-9",
"CAS2": "306-83-2",
"F": 0.0,
"Name1": "CO2",
"Name2": "R123",
"betaT": 0.98639,
"betaV": 1.0,
"gammaT": 1.05886,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "124-38-9",
"CAS2": "754-12-1",
"F": 0.0,
"Name1": "CO2",
"Name2": "R1234YF",
"betaT": 1.01128,
"betaV": 1.0,
"gammaT": 0.98477,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "124-38-9",
"CAS2": "29118-24-9",
"F": 0.0,
"Name1": "CO2",
"Name2": "R1234ZE",
"betaT": 1.00219,
"betaV": 1.0,
"gammaT": 1.02234,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "124-38-9",
"CAS2": "2837-89-0",
"F": 0.0,
"Name1": "CO2",
"Name2": "R124",
"betaT": 0.99517,
"betaV": 1.0,
"gammaT": 1.01028,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "124-38-9",
"CAS2": "354-33-6",
"F": 0.0,
"Name1": "CO2",
"Name2": "R125",
"betaT": 1.0115,
"betaV": 1.0,
"gammaT": 0.96741,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "124-38-9",
"CAS2": "811-97-2",
"F": 0.0,
"Name1": "CO2",
"Name2": "R134A",
"betaT": 1.01036,
"betaV": 1.0,
"gammaT": 1.01129,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "124-38-9",
"CAS2": "75-68-3",
"F": 0.0,
"Name1": "CO2",
"Name2": "R142B",
"betaT": 1.01196,
"betaV": 1.0,
"gammaT": 1.00776,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "124-38-9",
"CAS2": "420-46-2",
"F": 0.0,
"Name1": "CO2",
"Name2": "R143A",
"betaT": 1.02027,
"betaV": 1.0,
"gammaT": 0.98474,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "124-38-9",
"CAS2": "75-37-6",
"F": 0.0,
"Name1": "CO2",
"Name2": "R152A",
"betaT": 1.00224,
"betaV": 1.0,
"gammaT": 1.00646,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "124-38-9",
"CAS2": "75-45-6",
"F": 0.0,
"Name1": "CO2",
"Name2": "R22",
"betaT": 1.00394,
"betaV": 1.0,
"gammaT": 1.01254,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "124-38-9",
"CAS2": "431-89-0",
"F": 0.0,
"Name1": "CO2",
"Name2": "R227EA",
"betaT": 1.00608,
"betaV": 1.0,
"gammaT": 1.00235,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "124-38-9",
"CAS2": "75-46-7",
"F": 0.0,
"Name1": "CO2",
"Name2": "R23",
"betaT": 1.00402,
"betaV": 1.0,
"gammaT": 0.9847,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "124-38-9",
"CAS2": "75-10-5",
"F": 0.0,
"Name1": "CO2",
"Name2": "R32",
"betaT": 1.00312,
"betaV": 1.0,
"gammaT": 0.99971,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "124-38-9",
"CAS2": "593-53-3",
"F": 0.0,
"Name1": "CO2",
"Name2": "R41",
"betaT": 0.99603,
"betaV": 1.0,
"gammaT": 1.003,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "124-38-9",
"CAS2": "7446-09-5",
"F": 0.0,
"Name1": "CO2",
"Name2": "SO2",
"betaT": 1.00511,
"betaV": 1.0,
"gammaT": 1.0107,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "124-38-9",
"CAS2": "108-88-3",
"F": 0.0,
"Name1": "CO2",
"Name2": "TOLUENE",
"betaT": 1.00502,
"betaV": 1.0,
"gammaT": 1.06677,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "463-58-1",
"CAS2": "7783-06-4",
"F": 0.0,
"Name1": "COS",
"Name2": "H2S",
"betaT": 0.99425,
"betaV": 1.0,
"gammaT": 0.94407,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "463-58-1",
"CAS2": "74-82-8",
"F": 0.0,
"Name1": "COS",
"Name2": "METHANE",
"betaT": 1.01619,
"betaV": 1.0,
"gammaT": 1.08482,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "463-58-1",
"CAS2": "74-98-6",
"F": 0.0,
"Name1": "COS",
"Name2": "PROPANE",
"betaT": 0.99601,
"betaV": 1.0,
"gammaT": 0.992,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "110-82-7",
"CAS2": "616-38-6",
"F": 0.0,
"Name1": "CYCLOHEX",
"Name2": "DMC",
"betaT": 1.00826,
"betaV": 1.0,
"gammaT": 0.92848,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "110-82-7",
"CAS2": "100-41-4",
"F": 0.0,
"Name1": "CYCLOHEX",
"Name2": "EBENZENE",
"betaT": 1.0043,
"betaV": 1.0,
"gammaT": 0.99414,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "110-82-7",
"CAS2": "74-84-0",
"F": 0.0,
"Name1": "CYCLOHEX",
"Name2": "ETHANE",
"betaT": 1.00539,
"betaV": 1.0,
"gammaT": 1.09921,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "110-82-7",
"CAS2": "64-17-5",
"F": 0.0,
"Name1": "CYCLOHEX",
"Name2": "ETHANOL",
"betaT": 1.02513,
"betaV": 1.0,
"gammaT": 0.90252,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "110-82-7",
"CAS2": "74-85-1",
"F": 0.0,
"Name1": "CYCLOHEX",
"Name2": "ETHYLENE",
"betaT": 1.00126,
"betaV": 1.0,
"gammaT": 1.12037,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "110-82-7",
"CAS2": "7783-06-4",
"F": 0.0,
"Name1": "CYCLOHEX",
"Name2": "H2S",
"betaT": 0.98291,
"betaV": 1.0,
"gammaT": 1.01006,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "110-82-7",
"CAS2": "142-82-5",
"F": 0.0,
"Name1": "CYCLOHEX",
"Name2": "HEPTANE",
"betaT": 1.00116,
"betaV": 1.0,
"gammaT": 0.99502,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "110-82-7",
"CAS2": "110-54-3",
"F": 0.0,
"Name1": "CYCLOHEX",
"Name2": "HEXANE",
"betaT": 1.00102,
"betaV": 1.0,
"gammaT": 0.99297,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "110-82-7",
"CAS2": "540-84-1",
"F": 0.0,
"Name1": "CYCLOHEX",
"Name2": "IOCTANE",
"betaT": 1.0019,
"betaV": 1.0,
"gammaT": 0.99375,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "110-82-7",
"CAS2": "74-82-8",
"F": 0.0,
"Name1": "CYCLOHEX",
"Name2": "METHANE",
"betaT": 1.01565,
"betaV": 1.0,
"gammaT": 1.32339,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "110-82-7",
"CAS2": "108-38-3",
"F": 0.0,
"Name1": "CYCLOHEX",
"Name2": "MXYLENE",
"betaT": 1.00315,
"betaV": 1.0,
"gammaT": 0.99328,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "110-82-7",
"CAS2": "7727-37-9",
"F": 0.0,
"Name1": "CYCLOHEX",
"Name2": "NITROGEN",
"betaT": 0.9997,
"betaV": 1.0,
"gammaT": 1.47554,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "110-82-7",
"CAS2": "111-84-2",
"F": 0.0,
"Name1": "CYCLOHEX",
"Name2": "NONANE",
"betaT": 0.99583,
"betaV": 1.0,
"gammaT": 1.00655,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "110-82-7",
"CAS2": "111-65-9",
"F": 0.0,
"Name1": "CYCLOHEX",
"Name2": "OCTANE",
"betaT": 1.00125,
"betaV": 1.0,
"gammaT": 0.99972,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "110-82-7",
"CAS2": "95-47-6",
"F": 0.0,
"Name1": "CYCLOHEX",
"Name2": "OXYLENE",
"betaT": 1.00392,
"betaV": 1.0,
"gammaT": 0.99006,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "110-82-7",
"CAS2": "109-66-0",
"F": 0.0,
"Name1": "CYCLOHEX",
"Name2": "PENTANE",
"betaT": 1.0005,
"betaV": 1.0,
"gammaT": 0.99588,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "110-82-7",
"CAS2": "74-98-6",
"F": 0.0,
"Name1": "CYCLOHEX",
"Name2": "PROPANE",
"betaT": 0.9974,
"betaV": 1.0,
"gammaT": 1.03578,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "110-82-7",
"CAS2": "115-07-1",
"F": 0.0,
"Name1": "CYCLOHEX",
"Name2": "PROPYLEN",
"betaT": 1.00099,
"betaV": 1.0,
"gammaT": 1.04089,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "110-82-7",
"CAS2": "106-42-3",
"F": 0.0,
"Name1": "CYCLOHEX",
"Name2": "PXYLENE",
"betaT": 1.00184,
"betaV": 1.0,
"gammaT": 0.99198,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "110-82-7",
"CAS2": "75-71-8",
"F": 0.0,
"Name1": "CYCLOHEX",
"Name2": "R12",
"betaT": 0.96292,
"betaV": 1.0,
"gammaT": 0.989,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "110-82-7",
"CAS2": "75-45-6",
"F": 0.0,
"Name1": "CYCLOHEX",
"Name2": "R22",
"betaT": 0.99094,
"betaV": 1.0,
"gammaT": 0.97638,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "110-82-7",
"CAS2": "108-88-3",
"F": 0.0,
"Name1": "CYCLOHEX",
"Name2": "TOLUENE",
"betaT": 1.00176,
"betaV": 1.0,
"gammaT": 0.98779,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "287-92-3",
"CAS2": "556-67-2",
"F": 0.0,
"Name1": "CYCLOPEN",
"Name2": "D4",
"betaT": 0.99608,
"betaV": 1.0,
"gammaT": 1.03293,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "287-92-3",
"CAS2": "64-17-5",
"F": 0.0,
"Name1": "CYCLOPEN",
"Name2": "ETHANOL",
"betaT": 1.06483,
"betaV": 1.0,
"gammaT": 0.89994,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "287-92-3",
"CAS2": "7440-63-3",
"F": 0.0,
"Name1": "CYCLOPEN",
"Name2": "XENON",
"betaT": 1.04856,
"betaV": 1.0,
"gammaT": 1.17726,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "75-19-4",
"CAS2": "74-98-6",
"F": 0.0,
"Name1": "CYCLOPRO",
"Name2": "PROPANE",
"betaT": 0.99757,
"betaV": 1.0,
"gammaT": 0.98041,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "75-19-4",
"CAS2": "354-33-6",
"F": 0.0,
"Name1": "CYCLOPRO",
"Name2": "R125",
"betaT": 1.01522,
"betaV": 1.0,
"gammaT": 0.91039,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "75-19-4",
"CAS2": "811-97-2",
"F": 0.0,
"Name1": "CYCLOPRO",
"Name2": "R134A",
"betaT": 1.01623,
"betaV": 1.0,
"gammaT": 0.91325,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "75-19-4",
"CAS2": "7440-63-3",
"F": 0.0,
"Name1": "CYCLOPRO",
"Name2": "XENON",
"betaT": 1.07035,
"betaV": 1.0,
"gammaT": 0.94711,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "7782-39-0",
"CAS2": "1333-74-0",
"F": 0.0,
"Name1": "D2",
"Name2": "HYDROGEN",
"betaT": 0.99136,
"betaV": 1.0,
"gammaT": 0.99511,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "7782-39-0",
"CAS2": "7440-01-9",
"F": 0.0,
"Name1": "D2",
"Name2": "NEON",
"betaT": 0.98882,
"betaV": 1.0,
"gammaT": 0.83393,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "7782-39-0",
"CAS2": "7727-37-9",
"F": 0.0,
"Name1": "D2",
"Name2": "NITROGEN",
"betaT": 1.01561,
"betaV": 1.0,
"gammaT": 1.22898,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "7789-20-0",
"CAS2": "7732-18-5",
"F": 0.0,
"Name1": "D2O",
"Name2": "WATER",
"betaT": 0.99577,
"betaV": 1.0,
"gammaT": 1.00379,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "556-67-2",
"CAS2": "107-51-7",
"F": 0.0,
"Name1": "D4",
"Name2": "MDM",
"betaT": 1.00174,
"betaV": 1.0,
"gammaT": 0.99969,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "124-18-5",
"CAS2": "616-38-6",
"F": 0.0,
"Name1": "DECANE",
"Name2": "DMC",
"betaT": 0.98375,
"betaV": 1.0,
"gammaT": 0.9247,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "124-18-5",
"CAS2": "64-17-5",
"F": 0.0,
"Name1": "DECANE",
"Name2": "ETHANOL",
"betaT": 0.99423,
"betaV": 1.0,
"gammaT": 0.89711,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "124-18-5",
"CAS2": "74-85-1",
"F": 0.0,
"Name1": "DECANE",
"Name2": "ETHYLENE",
"betaT": 1.05317,
"betaV": 1.0,
"gammaT": 1.28576,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "124-18-5",
"CAS2": "108-38-3",
"F": 0.0,
"Name1": "DECANE",
"Name2": "MXYLENE",
"betaT": 1.00035,
"betaV": 1.0,
"gammaT": 0.99369,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "124-18-5",
"CAS2": "95-47-6",
"F": 0.0,
"Name1": "DECANE",
"Name2": "OXYLENE",
"betaT": 0.99865,
"betaV": 1.0,
"gammaT": 0.99471,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "124-18-5",
"CAS2": "115-07-1",
"F": 0.0,
"Name1": "DECANE",
"Name2": "PROPYLEN",
"betaT": 1.04471,
"betaV": 1.0,
"gammaT": 1.19102,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "124-18-5",
"CAS2": "106-42-3",
"F": 0.0,
"Name1": "DECANE",
"Name2": "PXYLENE",
"betaT": 0.99899,
"betaV": 1.0,
"gammaT": 0.99262,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "124-18-5",
"CAS2": "108-88-3",
"F": 0.0,
"Name1": "DECANE",
"Name2": "TOLUENE",
"betaT": 0.9929,
"betaV": 1.0,
"gammaT": 0.99245,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "60-29-7",
"CAS2": "64-17-5",
"F": 0.0,
"Name1": "DEE",
"Name2": "ETHANOL",
"betaT": 1.00897,
"betaV": 1.0,
"gammaT": 0.97226,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "60-29-7",
"CAS2": "74-85-1",
"F": 0.0,
"Name1": "DEE",
"Name2": "ETHYLENE",
"betaT": 1.01111,
"betaV": 1.0,
"gammaT": 1.10874,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "60-29-7",
"CAS2": "110-54-3",
"F": 0.0,
"Name1": "DEE",
"Name2": "HEXANE",
"betaT": 0.99773,
"betaV": 1.0,
"gammaT": 0.99035,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "60-29-7",
"CAS2": "67-56-1",
"F": 0.0,
"Name1": "DEE",
"Name2": "METHANOL",
"betaT": 1.00417,
"betaV": 1.0,
"gammaT": 0.94684,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "60-29-7",
"CAS2": "75-71-8",
"F": 0.0,
"Name1": "DEE",
"Name2": "R12",
"betaT": 0.99569,
"betaV": 1.0,
"gammaT": 1.02787,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "60-29-7",
"CAS2": "7446-09-5",
"F": 0.0,
"Name1": "DEE",
"Name2": "SO2",
"betaT": 0.98788,
"betaV": 1.0,
"gammaT": 1.04115,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "60-29-7",
"CAS2": "7732-18-5",
"F": 0.0,
"Name1": "DEE",
"Name2": "WATER",
"betaT": 0.96917,
"betaV": 1.0,
"gammaT": 0.84219,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "616-38-6",
"CAS2": "64-17-5",
"F": 0.0,
"Name1": "DMC",
"Name2": "ETHANOL",
"betaT": 1.00298,
"betaV": 1.0,
"gammaT": 0.9412,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "616-38-6",
"CAS2": "142-82-5",
"F": 0.0,
"Name1": "DMC",
"Name2": "HEPTANE",
"betaT": 1.00844,
"betaV": 1.0,
"gammaT": 0.92607,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "616-38-6",
"CAS2": "110-54-3",
"F": 0.0,
"Name1": "DMC",
"Name2": "HEXANE",
"betaT": 1.00137,
"betaV": 1.0,
"gammaT": 0.92986,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "616-38-6",
"CAS2": "67-56-1",
"F": 0.0,
"Name1": "DMC",
"Name2": "METHANOL",
"betaT": 0.99772,
"betaV": 1.0,
"gammaT": 0.93765,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "616-38-6",
"CAS2": "111-84-2",
"F": 0.0,
"Name1": "DMC",
"Name2": "NONANE",
"betaT": 1.02118,
"betaV": 1.0,
"gammaT": 0.93384,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "616-38-6",
"CAS2": "111-65-9",
"F": 0.0,
"Name1": "DMC",
"Name2": "OCTANE",
"betaT": 1.01339,
"betaV": 1.0,
"gammaT": 0.92726,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "115-10-6",
"CAS2": "64-17-5",
"F": 0.0,
"Name1": "DME",
"Name2": "ETHANOL",
"betaT": 0.99876,
"betaV": 1.0,
"gammaT": 1.0361,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "115-10-6",
"CAS2": "110-54-3",
"F": 0.0,
"Name1": "DME",
"Name2": "HEXANE",
"betaT": 1.00984,
"betaV": 1.0,
"gammaT": 0.99219,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "115-10-6",
"CAS2": "75-28-5",
"F": 0.0,
"Name1": "DME",
"Name2": "ISOBUTAN",
"betaT": 1.00227,
"betaV": 1.0,
"gammaT": 0.96302,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "115-10-6",
"CAS2": "74-82-8",
"F": 0.0,
"Name1": "DME",
"Name2": "METHANE",
"betaT": 1.00956,
"betaV": 1.0,
"gammaT": 1.14009,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "115-10-6",
"CAS2": "67-56-1",
"F": 0.0,
"Name1": "DME",
"Name2": "METHANOL",
"betaT": 1.00406,
"betaV": 1.0,
"gammaT": 1.00554,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "115-10-6",
"CAS2": "109-66-0",
"F": 0.0,
"Name1": "DME",
"Name2": "PENTANE",
"betaT": 1.03571,
"betaV": 1.0,
"gammaT": 0.99489,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "115-10-6",
"CAS2": "74-98-6",
"F": 0.0,
"Name1": "DME",
"Name2": "PROPANE",
"betaT": 0.99761,
"betaV": 1.0,
"gammaT": 0.96354,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "115-10-6",
"CAS2": "115-07-1",
"F": 0.0,
"Name1": "DME",
"Name2": "PROPYLEN",
"betaT": 0.99733,
"betaV": 1.0,
"gammaT": 0.98909,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "115-10-6",
"CAS2": "354-33-6",
"F": 0.0,
"Name1": "DME",
"Name2": "R125",
"betaT": 1.00899,
"betaV": 1.0,
"gammaT": 1.03733,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "115-10-6",
"CAS2": "811-97-2",
"F": 0.0,
"Name1": "DME",
"Name2": "R134A",
"betaT": 0.99604,
"betaV": 1.0,
"gammaT": 1.01372,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "115-10-6",
"CAS2": "420-46-2",
"F": 0.0,
"Name1": "DME",
"Name2": "R143A",
"betaT": 1.00012,
"betaV": 1.0,
"gammaT": 0.99059,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "115-10-6",
"CAS2": "75-45-6",
"F": 0.0,
"Name1": "DME",
"Name2": "R22",
"betaT": 1.01491,
"betaV": 1.0,
"gammaT": 1.07125,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "115-10-6",
"CAS2": "431-89-0",
"F": 0.0,
"Name1": "DME",
"Name2": "R227EA",
"betaT": 1.01575,
"betaV": 1.0,
"gammaT": 1.05765,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "115-10-6",
"CAS2": "431-63-0",
"F": 0.0,
"Name1": "DME",
"Name2": "R236EA",
"betaT": 0.98075,
"betaV": 1.0,
"gammaT": 1.06804,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "115-10-6",
"CAS2": "690-39-1",
"F": 0.0,
"Name1": "DME",
"Name2": "R236FA",
"betaT": 0.98997,
"betaV": 1.0,
"gammaT": 1.04344,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "115-10-6",
"CAS2": "75-10-5",
"F": 0.0,
"Name1": "DME",
"Name2": "R32",
"betaT": 0.99399,
"betaV": 1.0,
"gammaT": 0.99941,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "115-10-6",
"CAS2": "74-87-3",
"F": 0.0,
"Name1": "DME",
"Name2": "R40",
"betaT": 0.99969,
"betaV": 1.0,
"gammaT": 1.01217,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "100-41-4",
"CAS2": "64-17-5",
"F": 0.0,
"Name1": "EBENZENE",
"Name2": "ETHANOL",
"betaT": 1.01024,
"betaV": 1.0,
"gammaT": 0.90463,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "100-41-4",
"CAS2": "142-82-5",
"F": 0.0,
"Name1": "EBENZENE",
"Name2": "HEPTANE",
"betaT": 1.0004,
"betaV": 1.0,
"gammaT": 0.98665,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "100-41-4",
"CAS2": "110-54-3",
"F": 0.0,
"Name1": "EBENZENE",
"Name2": "HEXANE",
"betaT": 0.99974,
"betaV": 1.0,
"gammaT": 0.99383,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "100-41-4",
"CAS2": "540-84-1",
"F": 0.0,
"Name1": "EBENZENE",
"Name2": "IOCTANE",
"betaT": 1.00096,
"betaV": 1.0,
"gammaT": 0.98599,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "100-41-4",
"CAS2": "67-56-1",
"F": 0.0,
"Name1": "EBENZENE",
"Name2": "METHANOL",
"betaT": 1.00109,
"betaV": 1.0,
"gammaT": 0.89432,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "100-41-4",
"CAS2": "108-38-3",
"F": 0.0,
"Name1": "EBENZENE",
"Name2": "MXYLENE",
"betaT": 1.00012,
"betaV": 1.0,
"gammaT": 0.99939,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "100-41-4",
"CAS2": "111-84-2",
"F": 0.0,
"Name1": "EBENZENE",
"Name2": "NONANE",
"betaT": 1.00375,
"betaV": 1.0,
"gammaT": 0.98564,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "100-41-4",
"CAS2": "111-65-9",
"F": 0.0,
"Name1": "EBENZENE",
"Name2": "OCTANE",
"betaT": 1.00078,
"betaV": 1.0,
"gammaT": 0.98584,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "100-41-4",
"CAS2": "95-47-6",
"F": 0.0,
"Name1": "EBENZENE",
"Name2": "OXYLENE",
"betaT": 1.00153,
"betaV": 1.0,
"gammaT": 0.99924,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "100-41-4",
"CAS2": "106-42-3",
"F": 0.0,
"Name1": "EBENZENE",
"Name2": "PXYLENE",
"betaT": 0.99948,
"betaV": 1.0,
"gammaT": 0.99905,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "100-41-4",
"CAS2": "108-88-3",
"F": 0.0,
"Name1": "EBENZENE",
"Name2": "TOLUENE",
"betaT": 1.00288,
"betaV": 1.0,
"gammaT": 1.00252,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-84-0",
"CAS2": "74-85-1",
"F": 0.0,
"Name1": "ETHANE",
"Name2": "ETHYLENE",
"betaT": 1.00375,
"betaV": 1.0,
"gammaT": 0.99401,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-84-0",
"CAS2": "7647-01-0",
"F": 0.0,
"Name1": "ETHANE",
"Name2": "HCL",
"betaT": 0.99182,
"betaV": 1.0,
"gammaT": 0.90586,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-84-0",
"CAS2": "540-84-1",
"F": 0.0,
"Name1": "ETHANE",
"Name2": "IOCTANE",
"betaT": 0.90358,
"betaV": 1.0,
"gammaT": 1.22877,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-84-0",
"CAS2": "7439-90-9",
"F": 0.0,
"Name1": "ETHANE",
"Name2": "KRYPTON",
"betaT": 1.00338,
"betaV": 1.0,
"gammaT": 1.04799,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-84-0",
"CAS2": "108-38-3",
"F": 0.0,
"Name1": "ETHANE",
"Name2": "MXYLENE",
"betaT": 0.98799,
"betaV": 1.0,
"gammaT": 1.17616,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-84-0",
"CAS2": "115-07-1",
"F": 0.0,
"Name1": "ETHANE",
"Name2": "PROPYLEN",
"betaT": 0.99928,
"betaV": 1.0,
"gammaT": 1.0056,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-84-0",
"CAS2": "76-16-4",
"F": 0.0,
"Name1": "ETHANE",
"Name2": "R116",
"betaT": 1.03539,
"betaV": 1.0,
"gammaT": 0.89844,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-84-0",
"CAS2": "116-15-4",
"F": 0.0,
"Name1": "ETHANE",
"Name2": "R1216",
"betaT": 1.01157,
"betaV": 1.0,
"gammaT": 0.93961,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-84-0",
"CAS2": "75-73-0",
"F": 0.0,
"Name1": "ETHANE",
"Name2": "R14",
"betaT": 1.01483,
"betaV": 1.0,
"gammaT": 0.89216,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-84-0",
"CAS2": "76-19-7",
"F": 0.0,
"Name1": "ETHANE",
"Name2": "R218",
"betaT": 1.03147,
"betaV": 1.0,
"gammaT": 0.93581,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-84-0",
"CAS2": "75-46-7",
"F": 0.0,
"Name1": "ETHANE",
"Name2": "R23",
"betaT": 1.00597,
"betaV": 1.0,
"gammaT": 0.87082,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-84-0",
"CAS2": "108-88-3",
"F": 0.0,
"Name1": "ETHANE",
"Name2": "TOLUENE",
"betaT": 0.9954,
"betaV": 1.0,
"gammaT": 1.12756,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-84-0",
"CAS2": "7440-63-3",
"F": 0.0,
"Name1": "ETHANE",
"Name2": "XENON",
"betaT": 0.99857,
"betaV": 1.0,
"gammaT": 1.0096,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "64-17-5",
"CAS2": "74-85-1",
"F": 0.0,
"Name1": "ETHANOL",
"Name2": "ETHYLENE",
"betaT": 1.02189,
"betaV": 1.0,
"gammaT": 1.17065,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "64-17-5",
"CAS2": "142-82-5",
"F": 0.0,
"Name1": "ETHANOL",
"Name2": "HEPTANE",
"betaT": 0.98096,
"betaV": 1.0,
"gammaT": 0.8981,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "64-17-5",
"CAS2": "110-54-3",
"F": 0.0,
"Name1": "ETHANOL",
"Name2": "HEXANE",
"betaT": 0.97333,
"betaV": 1.0,
"gammaT": 0.90746,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "64-17-5",
"CAS2": "115-11-7",
"F": 0.0,
"Name1": "ETHANOL",
"Name2": "IBUTENE",
"betaT": 0.97566,
"betaV": 1.0,
"gammaT": 0.96241,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "64-17-5",
"CAS2": "107-83-5",
"F": 0.0,
"Name1": "ETHANOL",
"Name2": "IHEXANE",
"betaT": 0.98557,
"betaV": 1.0,
"gammaT": 0.90538,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "64-17-5",
"CAS2": "540-84-1",
"F": 0.0,
"Name1": "ETHANOL",
"Name2": "IOCTANE",
"betaT": 0.98077,
"betaV": 1.0,
"gammaT": 0.89163,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "64-17-5",
"CAS2": "67-56-1",
"F": 0.0,
"Name1": "ETHANOL",
"Name2": "METHANOL",
"betaT": 1.00177,
"betaV": 1.0,
"gammaT": 0.99902,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "64-17-5",
"CAS2": "107-46-0",
"F": 0.0,
"Name1": "ETHANOL",
"Name2": "MM",
"betaT": 0.99498,
"betaV": 1.0,
"gammaT": 0.91176,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "64-17-5",
"CAS2": "7727-37-9",
"F": 0.0,
"Name1": "ETHANOL",
"Name2": "NITROGEN",
"betaT": 1.04316,
"betaV": 1.0,
"gammaT": 1.63914,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "64-17-5",
"CAS2": "111-84-2",
"F": 0.0,
"Name1": "ETHANOL",
"Name2": "NONANE",
"betaT": 1.00808,
"betaV": 1.0,
"gammaT": 0.89624,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "64-17-5",
"CAS2": "111-65-9",
"F": 0.0,
"Name1": "ETHANOL",
"Name2": "OCTANE",
"betaT": 0.99103,
"betaV": 1.0,
"gammaT": 0.89471,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "64-17-5",
"CAS2": "95-47-6",
"F": 0.0,
"Name1": "ETHANOL",
"Name2": "OXYLENE",
"betaT": 0.98697,
"betaV": 1.0,
"gammaT": 0.90681,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "64-17-5",
"CAS2": "106-42-3",
"F": 0.0,
"Name1": "ETHANOL",
"Name2": "PXYLENE",
"betaT": 0.97813,
"betaV": 1.0,
"gammaT": 0.9059,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "64-17-5",
"CAS2": "76-13-1",
"F": 0.0,
"Name1": "ETHANOL",
"Name2": "R113",
"betaT": 0.9882,
"betaV": 1.0,
"gammaT": 0.90301,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "64-17-5",
"CAS2": "76-14-2",
"F": 0.0,
"Name1": "ETHANOL",
"Name2": "R114",
"betaT": 0.95361,
"betaV": 1.0,
"gammaT": 0.93497,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "64-17-5",
"CAS2": "354-33-6",
"F": 0.0,
"Name1": "ETHANOL",
"Name2": "R125",
"betaT": 1.00462,
"betaV": 1.0,
"gammaT": 1.05044,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "64-17-5",
"CAS2": "811-97-2",
"F": 0.0,
"Name1": "ETHANOL",
"Name2": "R134A",
"betaT": 0.97178,
"betaV": 1.0,
"gammaT": 0.98183,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "64-17-5",
"CAS2": "75-37-6",
"F": 0.0,
"Name1": "ETHANOL",
"Name2": "R152A",
"betaT": 0.96946,
"betaV": 1.0,
"gammaT": 0.97677,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "64-17-5",
"CAS2": "75-43-4",
"F": 0.0,
"Name1": "ETHANOL",
"Name2": "R21",
"betaT": 0.97987,
"betaV": 1.0,
"gammaT": 0.90692,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "64-17-5",
"CAS2": "75-45-6",
"F": 0.0,
"Name1": "ETHANOL",
"Name2": "R22",
"betaT": 0.99373,
"betaV": 1.0,
"gammaT": 1.05058,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "64-17-5",
"CAS2": "75-46-7",
"F": 0.0,
"Name1": "ETHANOL",
"Name2": "R23",
"betaT": 0.90517,
"betaV": 1.0,
"gammaT": 1.05138,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "64-17-5",
"CAS2": "75-10-5",
"F": 0.0,
"Name1": "ETHANOL",
"Name2": "R32",
"betaT": 0.97558,
"betaV": 1.0,
"gammaT": 1.01657,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "64-17-5",
"CAS2": "624-64-6",
"F": 0.0,
"Name1": "ETHANOL",
"Name2": "T2BUTENE",
"betaT": 0.97419,
"betaV": 1.0,
"gammaT": 0.95288,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "64-17-5",
"CAS2": "108-88-3",
"F": 0.0,
"Name1": "ETHANOL",
"Name2": "TOLUENE",
"betaT": 0.981,
"betaV": 1.0,
"gammaT": 0.90682,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-85-1",
"CAS2": "142-82-5",
"F": 0.0,
"Name1": "ETHYLENE",
"Name2": "HEPTANE",
"betaT": 0.97975,
"betaV": 1.0,
"gammaT": 1.1797,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-85-1",
"CAS2": "110-54-3",
"F": 0.0,
"Name1": "ETHYLENE",
"Name2": "HEXANE",
"betaT": 0.99131,
"betaV": 1.0,
"gammaT": 1.13008,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-85-1",
"CAS2": "75-28-5",
"F": 0.0,
"Name1": "ETHYLENE",
"Name2": "ISOBUTAN",
"betaT": 0.99619,
"betaV": 1.0,
"gammaT": 1.05868,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-85-1",
"CAS2": "74-82-8",
"F": 0.0,
"Name1": "ETHYLENE",
"Name2": "METHANE",
"betaT": 0.99352,
"betaV": 1.0,
"gammaT": 1.02333,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-85-1",
"CAS2": "7727-37-9",
"F": 0.0,
"Name1": "ETHYLENE",
"Name2": "NITROGEN",
"betaT": 0.99699,
"betaV": 1.0,
"gammaT": 1.051,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-85-1",
"CAS2": "111-84-2",
"F": 0.0,
"Name1": "ETHYLENE",
"Name2": "NONANE",
"betaT": 0.96742,
"betaV": 1.0,
"gammaT": 1.26048,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-85-1",
"CAS2": "111-65-9",
"F": 0.0,
"Name1": "ETHYLENE",
"Name2": "OCTANE",
"betaT": 0.9692,
"betaV": 1.0,
"gammaT": 1.21808,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-85-1",
"CAS2": "74-98-6",
"F": 0.0,
"Name1": "ETHYLENE",
"Name2": "PROPANE",
"betaT": 1.00374,
"betaV": 1.0,
"gammaT": 1.01236,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-85-1",
"CAS2": "115-07-1",
"F": 0.0,
"Name1": "ETHYLENE",
"Name2": "PROPYLEN",
"betaT": 1.00207,
"betaV": 1.0,
"gammaT": 1.01552,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-85-1",
"CAS2": "116-15-4",
"F": 0.0,
"Name1": "ETHYLENE",
"Name2": "R1216",
"betaT": 1.01864,
"betaV": 1.0,
"gammaT": 0.99653,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-85-1",
"CAS2": "7440-63-3",
"F": 0.0,
"Name1": "ETHYLENE",
"Name2": "XENON",
"betaT": 0.99831,
"betaV": 1.0,
"gammaT": 0.98039,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "7783-06-4",
"CAS2": "540-84-1",
"F": 0.0,
"Name1": "H2S",
"Name2": "IOCTANE",
"betaT": 1.02296,
"betaV": 1.0,
"gammaT": 1.01015,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "7783-06-4",
"CAS2": "108-38-3",
"F": 0.0,
"Name1": "H2S",
"Name2": "MXYLENE",
"betaT": 0.97237,
"betaV": 1.0,
"gammaT": 1.10582,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "7783-06-4",
"CAS2": "463-82-1",
"F": 0.0,
"Name1": "H2S",
"Name2": "NEOPENTN",
"betaT": 1.02548,
"betaV": 1.0,
"gammaT": 0.93089,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "7783-06-4",
"CAS2": "108-88-3",
"F": 0.0,
"Name1": "H2S",
"Name2": "TOLUENE",
"betaT": 0.98283,
"betaV": 1.0,
"gammaT": 1.08325,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "7647-01-0",
"CAS2": "110-54-3",
"F": 0.0,
"Name1": "HCL",
"Name2": "HEXANE",
"betaT": 1.01481,
"betaV": 1.0,
"gammaT": 1.01449,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "7647-01-0",
"CAS2": "67-56-1",
"F": 0.0,
"Name1": "HCL",
"Name2": "METHANOL",
"betaT": 0.90069,
"betaV": 1.0,
"gammaT": 1.65053,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "7647-01-0",
"CAS2": "74-98-6",
"F": 0.0,
"Name1": "HCL",
"Name2": "PROPANE",
"betaT": 1.02143,
"betaV": 1.0,
"gammaT": 0.9176,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "7647-01-0",
"CAS2": "75-68-3",
"F": 0.0,
"Name1": "HCL",
"Name2": "R142B",
"betaT": 1.00828,
"betaV": 1.0,
"gammaT": 1.00217,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "7647-01-0",
"CAS2": "75-10-5",
"F": 0.0,
"Name1": "HCL",
"Name2": "R32",
"betaT": 1.00252,
"betaV": 1.0,
"gammaT": 0.9976,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "7647-01-0",
"CAS2": "74-87-3",
"F": 0.0,
"Name1": "HCL",
"Name2": "R40",
"betaT": 0.98451,
"betaV": 1.0,
"gammaT": 1.08265,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "7647-01-0",
"CAS2": "593-53-3",
"F": 0.0,
"Name1": "HCL",
"Name2": "R41",
"betaT": 0.98722,
"betaV": 1.0,
"gammaT": 1.10901,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "7647-01-0",
"CAS2": "7446-09-5",
"F": 0.0,
"Name1": "HCL",
"Name2": "SO2",
"betaT": 0.9942,
"betaV": 1.0,
"gammaT": 1.05144,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "7647-01-0",
"CAS2": "7440-63-3",
"F": 0.0,
"Name1": "HCL",
"Name2": "XENON",
"betaT": 0.98264,
"betaV": 1.0,
"gammaT": 0.90579,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "142-82-5",
"CAS2": "107-83-5",
"F": 0.0,
"Name1": "HEPTANE",
"Name2": "IHEXANE",
"betaT": 1.00097,
"betaV": 1.0,
"gammaT": 1.00472,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "142-82-5",
"CAS2": "108-38-3",
"F": 0.0,
"Name1": "HEPTANE",
"Name2": "MXYLENE",
"betaT": 0.99846,
"betaV": 1.0,
"gammaT": 0.9896,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "142-82-5",
"CAS2": "95-47-6",
"F": 0.0,
"Name1": "HEPTANE",
"Name2": "OXYLENE",
"betaT": 0.99904,
"betaV": 1.0,
"gammaT": 0.98672,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "142-82-5",
"CAS2": "115-07-1",
"F": 0.0,
"Name1": "HEPTANE",
"Name2": "PROPYLEN",
"betaT": 0.99114,
"betaV": 1.0,
"gammaT": 1.06264,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "142-82-5",
"CAS2": "106-42-3",
"F": 0.0,
"Name1": "HEPTANE",
"Name2": "PXYLENE",
"betaT": 0.99936,
"betaV": 1.0,
"gammaT": 0.98957,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "142-82-5",
"CAS2": "76-13-1",
"F": 0.0,
"Name1": "HEPTANE",
"Name2": "R113",
"betaT": 0.99577,
"betaV": 1.0,
"gammaT": 0.99057,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "142-82-5",
"CAS2": "76-14-2",
"F": 0.0,
"Name1": "HEPTANE",
"Name2": "R114",
"betaT": 0.99215,
"betaV": 1.0,
"gammaT": 0.99663,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "142-82-5",
"CAS2": "75-71-8",
"F": 0.0,
"Name1": "HEPTANE",
"Name2": "R12",
"betaT": 0.98822,
"betaV": 1.0,
"gammaT": 1.03388,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "142-82-5",
"CAS2": "108-88-3",
"F": 0.0,
"Name1": "HEPTANE",
"Name2": "TOLUENE",
"betaT": 0.99684,
"betaV": 1.0,
"gammaT": 0.98136,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "110-54-3",
"CAS2": "107-83-5",
"F": 0.0,
"Name1": "HEXANE",
"Name2": "IHEXANE",
"betaT": 0.99954,
"betaV": 1.0,
"gammaT": 0.9986,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "110-54-3",
"CAS2": "540-84-1",
"F": 0.0,
"Name1": "HEXANE",
"Name2": "IOCTANE",
"betaT": 1.00668,
"betaV": 1.0,
"gammaT": 1.00427,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "110-54-3",
"CAS2": "107-46-0",
"F": 0.0,
"Name1": "HEXANE",
"Name2": "MM",
"betaT": 0.995,
"betaV": 1.0,
"gammaT": 1.00697,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "110-54-3",
"CAS2": "108-38-3",
"F": 0.0,
"Name1": "HEXANE",
"Name2": "MXYLENE",
"betaT": 1.01308,
"betaV": 1.0,
"gammaT": 0.99672,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "110-54-3",
"CAS2": "95-47-6",
"F": 0.0,
"Name1": "HEXANE",
"Name2": "OXYLENE",
"betaT": 1.00096,
"betaV": 1.0,
"gammaT": 1.00154,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "110-54-3",
"CAS2": "115-07-1",
"F": 0.0,
"Name1": "HEXANE",
"Name2": "PROPYLEN",
"betaT": 1.01641,
"betaV": 1.0,
"gammaT": 1.03815,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "110-54-3",
"CAS2": "106-42-3",
"F": 0.0,
"Name1": "HEXANE",
"Name2": "PXYLENE",
"betaT": 1.00071,
"betaV": 1.0,
"gammaT": 0.99711,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "110-54-3",
"CAS2": "76-13-1",
"F": 0.0,
"Name1": "HEXANE",
"Name2": "R113",
"betaT": 0.9994,
"betaV": 1.0,
"gammaT": 0.98509,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "110-54-3",
"CAS2": "76-14-2",
"F": 0.0,
"Name1": "HEXANE",
"Name2": "R114",
"betaT": 0.99629,
"betaV": 1.0,
"gammaT": 0.98179,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "110-54-3",
"CAS2": "75-45-6",
"F": 0.0,
"Name1": "HEXANE",
"Name2": "R22",
"betaT": 0.98925,
"betaV": 1.0,
"gammaT": 0.99579,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "110-54-3",
"CAS2": "108-88-3",
"F": 0.0,
"Name1": "HEXANE",
"Name2": "TOLUENE",
"betaT": 0.99876,
"betaV": 1.0,
"gammaT": 0.98316,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "110-54-3",
"CAS2": "7440-63-3",
"F": 0.0,
"Name1": "HEXANE",
"Name2": "XENON",
"betaT": 1.01959,
"betaV": 1.0,
"gammaT": 1.16656,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "1333-74-0",
"CAS2": "7440-01-9",
"F": 0.0,
"Name1": "HYDROGEN",
"Name2": "NEON",
"betaT": 1.00124,
"betaV": 1.0,
"gammaT": 0.83639,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "115-11-7",
"CAS2": "75-28-5",
"F": 0.0,
"Name1": "IBUTENE",
"Name2": "ISOBUTAN",
"betaT": 1.00019,
"betaV": 1.0,
"gammaT": 0.99644,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "115-11-7",
"CAS2": "111-65-9",
"F": 0.0,
"Name1": "IBUTENE",
"Name2": "OCTANE",
"betaT": 0.99296,
"betaV": 1.0,
"gammaT": 1.0535,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "115-11-7",
"CAS2": "74-98-6",
"F": 0.0,
"Name1": "IBUTENE",
"Name2": "PROPANE",
"betaT": 1.00734,
"betaV": 1.0,
"gammaT": 0.99305,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "115-11-7",
"CAS2": "420-46-2",
"F": 0.0,
"Name1": "IBUTENE",
"Name2": "R143A",
"betaT": 1.0022,
"betaV": 1.0,
"gammaT": 0.94375,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "115-11-7",
"CAS2": "75-37-6",
"F": 0.0,
"Name1": "IBUTENE",
"Name2": "R152A",
"betaT": 1.0008,
"betaV": 1.0,
"gammaT": 0.93949,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "115-11-7",
"CAS2": "431-89-0",
"F": 0.0,
"Name1": "IBUTENE",
"Name2": "R227EA",
"betaT": 1.01295,
"betaV": 1.0,
"gammaT": 0.92836,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "115-11-7",
"CAS2": "74-87-3",
"F": 0.0,
"Name1": "IBUTENE",
"Name2": "R40",
"betaT": 1.00052,
"betaV": 1.0,
"gammaT": 0.97922,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "115-11-7",
"CAS2": "7446-09-5",
"F": 0.0,
"Name1": "IBUTENE",
"Name2": "SO2",
"betaT": 0.9864,
"betaV": 1.0,
"gammaT": 0.94224,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "107-83-5",
"CAS2": "67-56-1",
"F": 0.0,
"Name1": "IHEXANE",
"Name2": "METHANOL",
"betaT": 1.00691,
"betaV": 1.0,
"gammaT": 0.88008,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "107-83-5",
"CAS2": "74-98-6",
"F": 0.0,
"Name1": "IHEXANE",
"Name2": "PROPANE",
"betaT": 1.00112,
"betaV": 1.0,
"gammaT": 1.03496,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "540-84-1",
"CAS2": "108-38-3",
"F": 0.0,
"Name1": "IOCTANE",
"Name2": "MXYLENE",
"betaT": 0.99628,
"betaV": 1.0,
"gammaT": 1.0016,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "540-84-1",
"CAS2": "7727-37-9",
"F": 0.0,
"Name1": "IOCTANE",
"Name2": "NITROGEN",
"betaT": 1.00895,
"betaV": 1.0,
"gammaT": 1.55448,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "540-84-1",
"CAS2": "111-65-9",
"F": 0.0,
"Name1": "IOCTANE",
"Name2": "OCTANE",
"betaT": 1.00129,
"betaV": 1.0,
"gammaT": 1.00412,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "540-84-1",
"CAS2": "95-47-6",
"F": 0.0,
"Name1": "IOCTANE",
"Name2": "OXYLENE",
"betaT": 0.99859,
"betaV": 1.0,
"gammaT": 0.98905,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "540-84-1",
"CAS2": "115-07-1",
"F": 0.0,
"Name1": "IOCTANE",
"Name2": "PROPYLEN",
"betaT": 1.03677,
"betaV": 1.0,
"gammaT": 1.11387,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "540-84-1",
"CAS2": "106-42-3",
"F": 0.0,
"Name1": "IOCTANE",
"Name2": "PXYLENE",
"betaT": 0.99929,
"betaV": 1.0,
"gammaT": 0.99104,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "540-84-1",
"CAS2": "108-88-3",
"F": 0.0,
"Name1": "IOCTANE",
"Name2": "TOLUENE",
"betaT": 0.99502,
"betaV": 1.0,
"gammaT": 0.9779,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "78-78-4",
"CAS2": "75-46-7",
"F": 0.0,
"Name1": "IPENTANE",
"Name2": "R23",
"betaT": 0.97157,
"betaV": 1.0,
"gammaT": 0.93001,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "78-78-4",
"CAS2": "460-73-1",
"F": 0.0,
"Name1": "IPENTANE",
"Name2": "R245FA",
"betaT": 0.98838,
"betaV": 1.0,
"gammaT": 0.90433,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "78-78-4",
"CAS2": "406-58-6",
"F": 0.0,
"Name1": "IPENTANE",
"Name2": "R365MFC",
"betaT": 1.01335,
"betaV": 1.0,
"gammaT": 0.9238,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "78-78-4",
"CAS2": "108-88-3",
"F": 0.0,
"Name1": "IPENTANE",
"Name2": "TOLUENE",
"betaT": 1.01022,
"betaV": 1.0,
"gammaT": 0.99749,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "75-28-5",
"CAS2": "115-07-1",
"F": 0.0,
"Name1": "ISOBUTAN",
"Name2": "PROPYLEN",
"betaT": 1.03014,
"betaV": 1.0,
"gammaT": 1.0126,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "75-28-5",
"CAS2": "754-12-1",
"F": 0.0,
"Name1": "ISOBUTAN",
"Name2": "R1234YF",
"betaT": 1.0073,
"betaV": 1.0,
"gammaT": 0.93536,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "75-28-5",
"CAS2": "29118-24-9",
"F": 0.0,
"Name1": "ISOBUTAN",
"Name2": "R1234ZE",
"betaT": 1.00591,
"betaV": 1.0,
"gammaT": 0.9282,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "75-28-5",
"CAS2": "354-33-6",
"F": 0.0,
"Name1": "ISOBUTAN",
"Name2": "R125",
"betaT": 0.98858,
"betaV": 1.0,
"gammaT": 0.90644,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "75-28-5",
"CAS2": "75-72-9",
"F": 0.0,
"Name1": "ISOBUTAN",
"Name2": "R13",
"betaT": 0.99553,
"betaV": 1.0,
"gammaT": 0.98045,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "75-28-5",
"CAS2": "811-97-2",
"F": 0.0,
"Name1": "ISOBUTAN",
"Name2": "R134A",
"betaT": 1.00145,
"betaV": 1.0,
"gammaT": 0.89668,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "75-28-5",
"CAS2": "420-46-2",
"F": 0.0,
"Name1": "ISOBUTAN",
"Name2": "R143A",
"betaT": 1.00047,
"betaV": 1.0,
"gammaT": 0.9195,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "75-28-5",
"CAS2": "75-37-6",
"F": 0.0,
"Name1": "ISOBUTAN",
"Name2": "R152A",
"betaT": 0.99318,
"betaV": 1.0,
"gammaT": 0.91845,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "75-28-5",
"CAS2": "431-89-0",
"F": 0.0,
"Name1": "ISOBUTAN",
"Name2": "R227EA",
"betaT": 1.01326,
"betaV": 1.0,
"gammaT": 0.90916,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "75-28-5",
"CAS2": "75-46-7",
"F": 0.0,
"Name1": "ISOBUTAN",
"Name2": "R23",
"betaT": 0.97853,
"betaV": 1.0,
"gammaT": 0.89794,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "75-28-5",
"CAS2": "460-73-1",
"F": 0.0,
"Name1": "ISOBUTAN",
"Name2": "R245FA",
"betaT": 1.01357,
"betaV": 1.0,
"gammaT": 0.90803,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "75-28-5",
"CAS2": "75-10-5",
"F": 0.0,
"Name1": "ISOBUTAN",
"Name2": "R32",
"betaT": 0.9765,
"betaV": 1.0,
"gammaT": 0.86238,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "7439-90-9",
"CAS2": "74-82-8",
"F": 0.0,
"Name1": "KRYPTON",
"Name2": "METHANE",
"betaT": 0.99962,
"betaV": 1.0,
"gammaT": 0.99368,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "7439-90-9",
"CAS2": "7782-44-7",
"F": 0.0,
"Name1": "KRYPTON",
"Name2": "OXYGEN",
"betaT": 0.99555,
"betaV": 1.0,
"gammaT": 0.98848,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "7439-90-9",
"CAS2": "115-07-1",
"F": 0.0,
"Name1": "KRYPTON",
"Name2": "PROPYLEN",
"betaT": 0.99711,
"betaV": 1.0,
"gammaT": 1.08746,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-82-8",
"CAS2": "10024-97-2",
"F": 0.0,
"Name1": "METHANE",
"Name2": "N2O",
"betaT": 0.98876,
"betaV": 1.0,
"gammaT": 1.02354,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-82-8",
"CAS2": "463-82-1",
"F": 0.0,
"Name1": "METHANE",
"Name2": "NEOPENTN",
"betaT": 0.98554,
"betaV": 1.0,
"gammaT": 1.22513,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-82-8",
"CAS2": "115-07-1",
"F": 0.0,
"Name1": "METHANE",
"Name2": "PROPYLEN",
"betaT": 0.99563,
"betaV": 1.0,
"gammaT": 1.11748,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-82-8",
"CAS2": "7446-09-5",
"F": 0.0,
"Name1": "METHANE",
"Name2": "SO2",
"betaT": 1.03694,
"betaV": 1.0,
"gammaT": 1.07082,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "67-56-1",
"CAS2": "107-46-0",
"F": 0.0,
"Name1": "METHANOL",
"Name2": "MM",
"betaT": 1.02619,
"betaV": 1.0,
"gammaT": 0.90636,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "67-56-1",
"CAS2": "108-38-3",
"F": 0.0,
"Name1": "METHANOL",
"Name2": "MXYLENE",
"betaT": 0.99745,
"betaV": 1.0,
"gammaT": 0.88973,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "67-56-1",
"CAS2": "7782-44-7",
"F": 0.0,
"Name1": "METHANOL",
"Name2": "OXYGEN",
"betaT": 1.07547,
"betaV": 1.0,
"gammaT": 1.5018,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "67-56-1",
"CAS2": "811-97-2",
"F": 0.0,
"Name1": "METHANOL",
"Name2": "R134A",
"betaT": 1.00779,
"betaV": 1.0,
"gammaT": 0.98889,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "67-56-1",
"CAS2": "75-37-6",
"F": 0.0,
"Name1": "METHANOL",
"Name2": "R152A",
"betaT": 1.01147,
"betaV": 1.0,
"gammaT": 0.98828,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "67-56-1",
"CAS2": "75-43-4",
"F": 0.0,
"Name1": "METHANOL",
"Name2": "R21",
"betaT": 1.03177,
"betaV": 1.0,
"gammaT": 0.91282,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "67-56-1",
"CAS2": "75-45-6",
"F": 0.0,
"Name1": "METHANOL",
"Name2": "R22",
"betaT": 1.00262,
"betaV": 1.0,
"gammaT": 1.03751,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "67-56-1",
"CAS2": "75-10-5",
"F": 0.0,
"Name1": "METHANOL",
"Name2": "R32",
"betaT": 0.993,
"betaV": 1.0,
"gammaT": 1.01175,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "67-56-1",
"CAS2": "7446-09-5",
"F": 0.0,
"Name1": "METHANOL",
"Name2": "SO2",
"betaT": 0.97373,
"betaV": 1.0,
"gammaT": 1.02388,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "67-56-1",
"CAS2": "624-64-6",
"F": 0.0,
"Name1": "METHANOL",
"Name2": "T2BUTENE",
"betaT": 0.9789,
"betaV": 1.0,
"gammaT": 0.90748,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "67-56-1",
"CAS2": "108-88-3",
"F": 0.0,
"Name1": "METHANOL",
"Name2": "TOLUENE",
"betaT": 0.98203,
"betaV": 1.0,
"gammaT": 0.891,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "67-56-1",
"CAS2": "7732-18-5",
"F": 0.0,
"Name1": "METHANOL",
"Name2": "WATER",
"betaT": 0.99676,
"betaV": 1.0,
"gammaT": 0.96774,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "67-56-1",
"CAS2": "7440-63-3",
"F": 0.0,
"Name1": "METHANOL",
"Name2": "XENON",
"betaT": 0.93558,
"betaV": 1.0,
"gammaT": 0.77335,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "112-63-0",
"CAS2": "112-39-0",
"F": 0.0,
"Name1": "MLINOLEA",
"Name2": "MPALMITA",
"betaT": 0.9974,
"betaV": 1.0,
"gammaT": 0.99543,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "107-46-0",
"CAS2": "108-88-3",
"F": 0.0,
"Name1": "MM",
"Name2": "TOLUENE",
"betaT": 0.9991,
"betaV": 1.0,
"gammaT": 0.97446,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "112-62-9",
"CAS2": "112-61-8",
"F": 0.0,
"Name1": "MOLEATE",
"Name2": "MSTEARAT",
"betaT": 0.99882,
"betaV": 1.0,
"gammaT": 0.99836,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "112-39-0",
"CAS2": "74-98-6",
"F": 0.0,
"Name1": "MPALMITA",
"Name2": "PROPANE",
"betaT": 1.08514,
"betaV": 1.0,
"gammaT": 1.21332,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "108-38-3",
"CAS2": "111-84-2",
"F": 0.0,
"Name1": "MXYLENE",
"Name2": "NONANE",
"betaT": 1.00227,
"betaV": 1.0,
"gammaT": 0.98031,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "108-38-3",
"CAS2": "111-65-9",
"F": 0.0,
"Name1": "MXYLENE",
"Name2": "OCTANE",
"betaT": 1.00031,
"betaV": 1.0,
"gammaT": 0.99296,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "108-38-3",
"CAS2": "95-47-6",
"F": 0.0,
"Name1": "MXYLENE",
"Name2": "OXYLENE",
"betaT": 1.00073,
"betaV": 1.0,
"gammaT": 0.99997,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "108-38-3",
"CAS2": "74-98-6",
"F": 0.0,
"Name1": "MXYLENE",
"Name2": "PROPANE",
"betaT": 1.00346,
"betaV": 1.0,
"gammaT": 1.08363,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "108-38-3",
"CAS2": "115-07-1",
"F": 0.0,
"Name1": "MXYLENE",
"Name2": "PROPYLEN",
"betaT": 1.00655,
"betaV": 1.0,
"gammaT": 1.09811,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "108-38-3",
"CAS2": "108-88-3",
"F": 0.0,
"Name1": "MXYLENE",
"Name2": "TOLUENE",
"betaT": 0.9965,
"betaV": 1.0,
"gammaT": 0.99601,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "10024-97-2",
"CAS2": "354-33-6",
"F": 0.0,
"Name1": "N2O",
"Name2": "R125",
"betaT": 0.97626,
"betaV": 1.0,
"gammaT": 0.77302,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "463-82-1",
"CAS2": "109-66-0",
"F": 0.0,
"Name1": "NEOPENTN",
"Name2": "PENTANE",
"betaT": 1.0005,
"betaV": 1.0,
"gammaT": 1.00236,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "463-82-1",
"CAS2": "74-98-6",
"F": 0.0,
"Name1": "NEOPENTN",
"Name2": "PROPANE",
"betaT": 1.02028,
"betaV": 1.0,
"gammaT": 1.0591,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "7727-37-9",
"CAS2": "106-42-3",
"F": 0.0,
"Name1": "NITROGEN",
"Name2": "PXYLENE",
"betaT": 0.99471,
"betaV": 1.0,
"gammaT": 1.63462,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "7727-37-9",
"CAS2": "75-72-9",
"F": 0.0,
"Name1": "NITROGEN",
"Name2": "R13",
"betaT": 0.97523,
"betaV": 1.0,
"gammaT": 1.24069,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "7727-37-9",
"CAS2": "75-73-0",
"F": 0.0,
"Name1": "NITROGEN",
"Name2": "R14",
"betaT": 0.97005,
"betaV": 1.0,
"gammaT": 1.10991,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "7727-37-9",
"CAS2": "431-89-0",
"F": 0.0,
"Name1": "NITROGEN",
"Name2": "R227EA",
"betaT": 0.97134,
"betaV": 1.0,
"gammaT": 1.40945,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "111-84-2",
"CAS2": "95-47-6",
"F": 0.0,
"Name1": "NONANE",
"Name2": "OXYLENE",
"betaT": 0.9971,
"betaV": 1.0,
"gammaT": 0.98501,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "111-84-2",
"CAS2": "115-07-1",
"F": 0.0,
"Name1": "NONANE",
"Name2": "PROPYLEN",
"betaT": 1.01604,
"betaV": 1.0,
"gammaT": 1.11698,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "111-84-2",
"CAS2": "106-42-3",
"F": 0.0,
"Name1": "NONANE",
"Name2": "PXYLENE",
"betaT": 1.00061,
"betaV": 1.0,
"gammaT": 0.99387,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "111-84-2",
"CAS2": "108-88-3",
"F": 0.0,
"Name1": "NONANE",
"Name2": "TOLUENE",
"betaT": 0.99448,
"betaV": 1.0,
"gammaT": 0.98072,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "756-13-8",
"CAS2": "109-66-0",
"F": 0.0,
"Name1": "NOVEC649",
"Name2": "PENTANE",
"betaT": 0.9669,
"betaV": 1.0,
"gammaT": 0.90539,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "756-13-8",
"CAS2": "375-03-1",
"F": 0.0,
"Name1": "NOVEC649",
"Name2": "RE347MCC",
"betaT": 0.98723,
"betaV": 1.0,
"gammaT": 0.97915,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "111-65-9",
"CAS2": "95-47-6",
"F": 0.0,
"Name1": "OCTANE",
"Name2": "OXYLENE",
"betaT": 0.99933,
"betaV": 1.0,
"gammaT": 0.99245,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "111-65-9",
"CAS2": "106-42-3",
"F": 0.0,
"Name1": "OCTANE",
"Name2": "PXYLENE",
"betaT": 0.99788,
"betaV": 1.0,
"gammaT": 0.98651,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "111-65-9",
"CAS2": "75-71-8",
"F": 0.0,
"Name1": "OCTANE",
"Name2": "R12",
"betaT": 0.99653,
"betaV": 1.0,
"gammaT": 1.06084,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "111-65-9",
"CAS2": "108-88-3",
"F": 0.0,
"Name1": "OCTANE",
"Name2": "TOLUENE",
"betaT": 0.99664,
"betaV": 1.0,
"gammaT": 0.98036,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "7782-44-7",
"CAS2": "7446-09-5",
"F": 0.0,
"Name1": "OXYGEN",
"Name2": "SO2",
"betaT": 0.98436,
"betaV": 1.0,
"gammaT": 1.18081,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "95-47-6",
"CAS2": "108-88-3",
"F": 0.0,
"Name1": "OXYLENE",
"Name2": "TOLUENE",
"betaT": 0.99826,
"betaV": 1.0,
"gammaT": 1.00209,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "109-66-0",
"CAS2": "76-14-2",
"F": 0.0,
"Name1": "PENTANE",
"Name2": "R114",
"betaT": 0.99646,
"betaV": 1.0,
"gammaT": 0.97011,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "109-66-0",
"CAS2": "29118-24-9",
"F": 0.0,
"Name1": "PENTANE",
"Name2": "R1234ZE",
"betaT": 0.98894,
"betaV": 1.0,
"gammaT": 0.93824,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "109-66-0",
"CAS2": "1717-00-6",
"F": 0.0,
"Name1": "PENTANE",
"Name2": "R141B",
"betaT": 1.0027,
"betaV": 1.0,
"gammaT": 0.977,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "109-66-0",
"CAS2": "75-37-6",
"F": 0.0,
"Name1": "PENTANE",
"Name2": "R152A",
"betaT": 0.98932,
"betaV": 1.0,
"gammaT": 0.92023,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "109-66-0",
"CAS2": "75-45-6",
"F": 0.0,
"Name1": "PENTANE",
"Name2": "R22",
"betaT": 0.98621,
"betaV": 1.0,
"gammaT": 0.96034,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "109-66-0",
"CAS2": "75-46-7",
"F": 0.0,
"Name1": "PENTANE",
"Name2": "R23",
"betaT": 0.96622,
"betaV": 1.0,
"gammaT": 0.94007,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "109-66-0",
"CAS2": "460-73-1",
"F": 0.0,
"Name1": "PENTANE",
"Name2": "R245FA",
"betaT": 1.00687,
"betaV": 1.0,
"gammaT": 0.89534,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "109-66-0",
"CAS2": "375-03-1",
"F": 0.0,
"Name1": "PENTANE",
"Name2": "RE347MCC",
"betaT": 1.00983,
"betaV": 1.0,
"gammaT": 0.9281,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "109-66-0",
"CAS2": "2551-62-4",
"F": 0.0,
"Name1": "PENTANE",
"Name2": "SF6",
"betaT": 0.97466,
"betaV": 1.0,
"gammaT": 0.92912,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "109-66-0",
"CAS2": "108-88-3",
"F": 0.0,
"Name1": "PENTANE",
"Name2": "TOLUENE",
"betaT": 1.00052,
"betaV": 1.0,
"gammaT": 0.99282,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-98-6",
"CAS2": "115-07-1",
"F": 0.0,
"Name1": "PROPANE",
"Name2": "PROPYLEN",
"betaT": 0.99978,
"betaV": 1.0,
"gammaT": 0.9935,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-98-6",
"CAS2": "76-13-1",
"F": 0.0,
"Name1": "PROPANE",
"Name2": "R113",
"betaT": 1.0047,
"betaV": 1.0,
"gammaT": 1.01447,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-98-6",
"CAS2": "76-14-2",
"F": 0.0,
"Name1": "PROPANE",
"Name2": "R114",
"betaT": 1.00332,
"betaV": 1.0,
"gammaT": 0.98055,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-98-6",
"CAS2": "76-16-4",
"F": 0.0,
"Name1": "PROPANE",
"Name2": "R116",
"betaT": 1.01661,
"betaV": 1.0,
"gammaT": 0.89173,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-98-6",
"CAS2": "116-15-4",
"F": 0.0,
"Name1": "PROPANE",
"Name2": "R1216",
"betaT": 1.01214,
"betaV": 1.0,
"gammaT": 0.92233,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-98-6",
"CAS2": "29118-24-9",
"F": 0.0,
"Name1": "PROPANE",
"Name2": "R1234ZE",
"betaT": 1.01336,
"betaV": 1.0,
"gammaT": 0.93387,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-98-6",
"CAS2": "354-33-6",
"F": 0.0,
"Name1": "PROPANE",
"Name2": "R125",
"betaT": 1.00883,
"betaV": 1.0,
"gammaT": 0.89892,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-98-6",
"CAS2": "811-97-2",
"F": 0.0,
"Name1": "PROPANE",
"Name2": "R134A",
"betaT": 1.01148,
"betaV": 1.0,
"gammaT": 0.89674,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-98-6",
"CAS2": "420-46-2",
"F": 0.0,
"Name1": "PROPANE",
"Name2": "R143A",
"betaT": 1.00987,
"betaV": 1.0,
"gammaT": 0.91581,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-98-6",
"CAS2": "75-37-6",
"F": 0.0,
"Name1": "PROPANE",
"Name2": "R152A",
"betaT": 1.01223,
"betaV": 1.0,
"gammaT": 0.92009,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-98-6",
"CAS2": "431-89-0",
"F": 0.0,
"Name1": "PROPANE",
"Name2": "R227EA",
"betaT": 1.02125,
"betaV": 1.0,
"gammaT": 0.91449,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-98-6",
"CAS2": "75-46-7",
"F": 0.0,
"Name1": "PROPANE",
"Name2": "R23",
"betaT": 0.98814,
"betaV": 1.0,
"gammaT": 0.87585,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-98-6",
"CAS2": "431-63-0",
"F": 0.0,
"Name1": "PROPANE",
"Name2": "R236EA",
"betaT": 1.02233,
"betaV": 1.0,
"gammaT": 0.92015,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-98-6",
"CAS2": "690-39-1",
"F": 0.0,
"Name1": "PROPANE",
"Name2": "R236FA",
"betaT": 1.02204,
"betaV": 1.0,
"gammaT": 0.91493,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-98-6",
"CAS2": "460-73-1",
"F": 0.0,
"Name1": "PROPANE",
"Name2": "R245FA",
"betaT": 1.02121,
"betaV": 1.0,
"gammaT": 0.92286,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-98-6",
"CAS2": "75-10-5",
"F": 0.0,
"Name1": "PROPANE",
"Name2": "R32",
"betaT": 1.00067,
"betaV": 1.0,
"gammaT": 0.86421,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-98-6",
"CAS2": "115-25-3",
"F": 0.0,
"Name1": "PROPANE",
"Name2": "RC318",
"betaT": 1.02377,
"betaV": 1.0,
"gammaT": 0.9232,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-98-6",
"CAS2": "7446-09-5",
"F": 0.0,
"Name1": "PROPANE",
"Name2": "SO2",
"betaT": 0.99024,
"betaV": 1.0,
"gammaT": 0.87281,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-98-6",
"CAS2": "108-88-3",
"F": 0.0,
"Name1": "PROPANE",
"Name2": "TOLUENE",
"betaT": 1.00576,
"betaV": 1.0,
"gammaT": 1.04281,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-98-6",
"CAS2": "7440-63-3",
"F": 0.0,
"Name1": "PROPANE",
"Name2": "XENON",
"betaT": 1.00491,
"betaV": 1.0,
"gammaT": 1.04133,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "115-07-1",
"CAS2": "106-42-3",
"F": 0.0,
"Name1": "PROPYLEN",
"Name2": "PXYLENE",
"betaT": 0.99082,
"betaV": 1.0,
"gammaT": 1.09426,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "115-07-1",
"CAS2": "76-14-2",
"F": 0.0,
"Name1": "PROPYLEN",
"Name2": "R114",
"betaT": 1.01235,
"betaV": 1.0,
"gammaT": 0.97683,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "115-07-1",
"CAS2": "76-15-3",
"F": 0.0,
"Name1": "PROPYLEN",
"Name2": "R115",
"betaT": 1.01487,
"betaV": 1.0,
"gammaT": 0.94167,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "115-07-1",
"CAS2": "76-16-4",
"F": 0.0,
"Name1": "PROPYLEN",
"Name2": "R116",
"betaT": 1.01401,
"betaV": 1.0,
"gammaT": 0.87937,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "115-07-1",
"CAS2": "75-71-8",
"F": 0.0,
"Name1": "PROPYLEN",
"Name2": "R12",
"betaT": 1.00271,
"betaV": 1.0,
"gammaT": 0.9883,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "115-07-1",
"CAS2": "116-15-4",
"F": 0.0,
"Name1": "PROPYLEN",
"Name2": "R1216",
"betaT": 1.01903,
"betaV": 1.0,
"gammaT": 0.93686,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "115-07-1",
"CAS2": "354-33-6",
"F": 0.0,
"Name1": "PROPYLEN",
"Name2": "R125",
"betaT": 1.00733,
"betaV": 1.0,
"gammaT": 0.92944,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "115-07-1",
"CAS2": "75-72-9",
"F": 0.0,
"Name1": "PROPYLEN",
"Name2": "R13",
"betaT": 0.99688,
"betaV": 1.0,
"gammaT": 0.95923,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "115-07-1",
"CAS2": "811-97-2",
"F": 0.0,
"Name1": "PROPYLEN",
"Name2": "R134A",
"betaT": 1.0136,
"betaV": 1.0,
"gammaT": 0.93494,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "115-07-1",
"CAS2": "75-68-3",
"F": 0.0,
"Name1": "PROPYLEN",
"Name2": "R142B",
"betaT": 1.00653,
"betaV": 1.0,
"gammaT": 0.9925,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "115-07-1",
"CAS2": "75-37-6",
"F": 0.0,
"Name1": "PROPYLEN",
"Name2": "R152A",
"betaT": 1.01177,
"betaV": 1.0,
"gammaT": 0.94791,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "115-07-1",
"CAS2": "75-45-6",
"F": 0.0,
"Name1": "PROPYLEN",
"Name2": "R22",
"betaT": 1.00095,
"betaV": 1.0,
"gammaT": 0.97836,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "115-07-1",
"CAS2": "75-46-7",
"F": 0.0,
"Name1": "PROPYLEN",
"Name2": "R23",
"betaT": 0.99184,
"betaV": 1.0,
"gammaT": 0.9181,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "115-07-1",
"CAS2": "75-10-5",
"F": 0.0,
"Name1": "PROPYLEN",
"Name2": "R32",
"betaT": 0.99634,
"betaV": 1.0,
"gammaT": 0.90627,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "115-07-1",
"CAS2": "7440-63-3",
"F": 0.0,
"Name1": "PROPYLEN",
"Name2": "XENON",
"betaT": 0.99031,
"betaV": 1.0,
"gammaT": 1.01223,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "106-42-3",
"CAS2": "108-88-3",
"F": 0.0,
"Name1": "PXYLENE",
"Name2": "TOLUENE",
"betaT": 0.99915,
"betaV": 1.0,
"gammaT": 0.99999,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "75-69-4",
"CAS2": "75-71-8",
"F": 0.0,
"Name1": "R11",
"Name2": "R12",
"betaT": 1.00726,
"betaV": 1.0,
"gammaT": 1.00102,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "75-69-4",
"CAS2": "75-72-9",
"F": 0.0,
"Name1": "R11",
"Name2": "R13",
"betaT": 0.99697,
"betaV": 1.0,
"gammaT": 1.01419,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "75-69-4",
"CAS2": "75-45-6",
"F": 0.0,
"Name1": "R11",
"Name2": "R22",
"betaT": 0.9996,
"betaV": 1.0,
"gammaT": 0.97759,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "75-69-4",
"CAS2": "75-46-7",
"F": 0.0,
"Name1": "R11",
"Name2": "R23",
"betaT": 0.97898,
"betaV": 1.0,
"gammaT": 0.94638,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "76-13-1",
"CAS2": "76-14-2",
"F": 0.0,
"Name1": "R113",
"Name2": "R114",
"betaT": 0.99859,
"betaV": 1.0,
"gammaT": 1.00476,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "76-13-1",
"CAS2": "75-72-9",
"F": 0.0,
"Name1": "R113",
"Name2": "R13",
"betaT": 0.99941,
"betaV": 1.0,
"gammaT": 1.05033,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "76-13-1",
"CAS2": "75-68-3",
"F": 0.0,
"Name1": "R113",
"Name2": "R142B",
"betaT": 0.99666,
"betaV": 1.0,
"gammaT": 0.98837,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "76-13-1",
"CAS2": "75-37-6",
"F": 0.0,
"Name1": "R113",
"Name2": "R152A",
"betaT": 0.98806,
"betaV": 1.0,
"gammaT": 0.95473,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "76-13-1",
"CAS2": "75-45-6",
"F": 0.0,
"Name1": "R113",
"Name2": "R22",
"betaT": 0.98836,
"betaV": 1.0,
"gammaT": 0.99757,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "76-13-1",
"CAS2": "75-46-7",
"F": 0.0,
"Name1": "R113",
"Name2": "R23",
"betaT": 0.97121,
"betaV": 1.0,
"gammaT": 0.98801,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "76-13-1",
"CAS2": "2551-62-4",
"F": 0.0,
"Name1": "R113",
"Name2": "SF6",
"betaT": 1.07569,
"betaV": 1.0,
"gammaT": 1.06961,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "76-14-2",
"CAS2": "75-71-8",
"F": 0.0,
"Name1": "R114",
"Name2": "R12",
"betaT": 1.00164,
"betaV": 1.0,
"gammaT": 0.99126,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "76-14-2",
"CAS2": "75-45-6",
"F": 0.0,
"Name1": "R114",
"Name2": "R22",
"betaT": 1.003,
"betaV": 1.0,
"gammaT": 0.9658,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "76-14-2",
"CAS2": "75-46-7",
"F": 0.0,
"Name1": "R114",
"Name2": "R23",
"betaT": 0.97633,
"betaV": 1.0,
"gammaT": 0.9623,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "76-15-3",
"CAS2": "354-33-6",
"F": 0.0,
"Name1": "R115",
"Name2": "R125",
"betaT": 0.99972,
"betaV": 1.0,
"gammaT": 0.96147,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "76-15-3",
"CAS2": "75-45-6",
"F": 0.0,
"Name1": "R115",
"Name2": "R22",
"betaT": 1.01422,
"betaV": 1.0,
"gammaT": 0.94989,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "76-16-4",
"CAS2": "811-97-2",
"F": 0.0,
"Name1": "R116",
"Name2": "R134A",
"betaT": 1.01284,
"betaV": 1.0,
"gammaT": 0.93618,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "76-16-4",
"CAS2": "420-46-2",
"F": 0.0,
"Name1": "R116",
"Name2": "R143A",
"betaT": 1.01003,
"betaV": 1.0,
"gammaT": 0.93499,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "76-16-4",
"CAS2": "75-45-6",
"F": 0.0,
"Name1": "R116",
"Name2": "R22",
"betaT": 0.99671,
"betaV": 1.0,
"gammaT": 0.91302,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "76-16-4",
"CAS2": "75-46-7",
"F": 0.0,
"Name1": "R116",
"Name2": "R23",
"betaT": 0.99695,
"betaV": 1.0,
"gammaT": 0.91114,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "75-71-8",
"CAS2": "116-15-4",
"F": 0.0,
"Name1": "R12",
"Name2": "R1216",
"betaT": 0.99964,
"betaV": 1.0,
"gammaT": 0.97942,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "75-71-8",
"CAS2": "75-72-9",
"F": 0.0,
"Name1": "R12",
"Name2": "R13",
"betaT": 0.99071,
"betaV": 1.0,
"gammaT": 0.97345,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "75-71-8",
"CAS2": "811-97-2",
"F": 0.0,
"Name1": "R12",
"Name2": "R134A",
"betaT": 1.0075,
"betaV": 1.0,
"gammaT": 0.941,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "75-71-8",
"CAS2": "75-68-3",
"F": 0.0,
"Name1": "R12",
"Name2": "R142B",
"betaT": 1.01193,
"betaV": 1.0,
"gammaT": 0.9765,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "75-71-8",
"CAS2": "420-46-2",
"F": 0.0,
"Name1": "R12",
"Name2": "R143A",
"betaT": 0.9859,
"betaV": 1.0,
"gammaT": 0.95199,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "75-71-8",
"CAS2": "75-37-6",
"F": 0.0,
"Name1": "R12",
"Name2": "R152A",
"betaT": 1.01876,
"betaV": 1.0,
"gammaT": 0.94387,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "75-71-8",
"CAS2": "75-45-6",
"F": 0.0,
"Name1": "R12",
"Name2": "R22",
"betaT": 0.99654,
"betaV": 1.0,
"gammaT": 0.96477,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "75-71-8",
"CAS2": "75-46-7",
"F": 0.0,
"Name1": "R12",
"Name2": "R23",
"betaT": 0.99206,
"betaV": 1.0,
"gammaT": 0.93086,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "75-71-8",
"CAS2": "115-25-3",
"F": 0.0,
"Name1": "R12",
"Name2": "RC318",
"betaT": 1.00226,
"betaV": 1.0,
"gammaT": 0.96907,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "116-15-4",
"CAS2": "306-83-2",
"F": 0.0,
"Name1": "R1216",
"Name2": "R123",
"betaT": 1.00494,
"betaV": 1.0,
"gammaT": 0.97467,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "116-15-4",
"CAS2": "75-45-6",
"F": 0.0,
"Name1": "R1216",
"Name2": "R22",
"betaT": 0.99593,
"betaV": 1.0,
"gammaT": 0.96186,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "116-15-4",
"CAS2": "115-25-3",
"F": 0.0,
"Name1": "R1216",
"Name2": "RC318",
"betaT": 1.00387,
"betaV": 1.0,
"gammaT": 1.00433,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "306-83-2",
"CAS2": "811-97-2",
"F": 0.0,
"Name1": "R123",
"Name2": "R134A",
"betaT": 0.99393,
"betaV": 1.0,
"gammaT": 0.98277,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "306-83-2",
"CAS2": "75-45-6",
"F": 0.0,
"Name1": "R123",
"Name2": "R22",
"betaT": 0.99482,
"betaV": 1.0,
"gammaT": 1.01277,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "306-83-2",
"CAS2": "75-10-5",
"F": 0.0,
"Name1": "R123",
"Name2": "R32",
"betaT": 0.98824,
"betaV": 1.0,
"gammaT": 0.98194,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "306-83-2",
"CAS2": "7732-18-5",
"F": 0.0,
"Name1": "R123",
"Name2": "WATER",
"betaT": 1.09996,
"betaV": 1.0,
"gammaT": 0.95847,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "754-12-1",
"CAS2": "354-33-6",
"F": 0.0,
"Name1": "R1234YF",
"Name2": "R125",
"betaT": 0.99915,
"betaV": 1.0,
"gammaT": 0.99876,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "754-12-1",
"CAS2": "811-97-2",
"F": 0.0,
"Name1": "R1234YF",
"Name2": "R134A",
"betaT": 0.99972,
"betaV": 1.0,
"gammaT": 0.98643,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "754-12-1",
"CAS2": "420-46-2",
"F": 0.0,
"Name1": "R1234YF",
"Name2": "R143A",
"betaT": 1.00024,
"betaV": 1.0,
"gammaT": 0.99523,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "754-12-1",
"CAS2": "75-37-6",
"F": 0.0,
"Name1": "R1234YF",
"Name2": "R152A",
"betaT": 0.9963,
"betaV": 1.0,
"gammaT": 0.98112,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "754-12-1",
"CAS2": "353-36-6",
"F": 0.0,
"Name1": "R1234YF",
"Name2": "R161",
"betaT": 0.99781,
"betaV": 1.0,
"gammaT": 0.98828,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "754-12-1",
"CAS2": "431-89-0",
"F": 0.0,
"Name1": "R1234YF",
"Name2": "R227EA",
"betaT": 0.99938,
"betaV": 1.0,
"gammaT": 0.99916,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "29118-24-9",
"CAS2": "75-37-6",
"F": 0.0,
"Name1": "R1234ZE",
"Name2": "R152A",
"betaT": 0.99902,
"betaV": 1.0,
"gammaT": 0.99579,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "2837-89-0",
"CAS2": "811-97-2",
"F": 0.0,
"Name1": "R124",
"Name2": "R134A",
"betaT": 0.99881,
"betaV": 1.0,
"gammaT": 0.98961,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "2837-89-0",
"CAS2": "75-68-3",
"F": 0.0,
"Name1": "R124",
"Name2": "R142B",
"betaT": 0.99802,
"betaV": 1.0,
"gammaT": 1.0032,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "354-33-6",
"CAS2": "75-37-6",
"F": 0.0,
"Name1": "R125",
"Name2": "R152A",
"betaT": 0.99429,
"betaV": 1.0,
"gammaT": 1.00282,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "354-33-6",
"CAS2": "353-36-6",
"F": 0.0,
"Name1": "R125",
"Name2": "R161",
"betaT": 1.01043,
"betaV": 1.0,
"gammaT": 0.99311,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "354-33-6",
"CAS2": "431-89-0",
"F": 0.0,
"Name1": "R125",
"Name2": "R227EA",
"betaT": 1.00101,
"betaV": 1.0,
"gammaT": 1.00302,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "354-33-6",
"CAS2": "75-46-7",
"F": 0.0,
"Name1": "R125",
"Name2": "R23",
"betaT": 0.99685,
"betaV": 1.0,
"gammaT": 1.00309,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "354-33-6",
"CAS2": "431-63-0",
"F": 0.0,
"Name1": "R125",
"Name2": "R236EA",
"betaT": 0.99947,
"betaV": 1.0,
"gammaT": 1.01046,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "354-33-6",
"CAS2": "690-39-1",
"F": 0.0,
"Name1": "R125",
"Name2": "R236FA",
"betaT": 0.9996,
"betaV": 1.0,
"gammaT": 1.01028,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "354-33-6",
"CAS2": "460-73-1",
"F": 0.0,
"Name1": "R125",
"Name2": "R245FA",
"betaT": 0.99836,
"betaV": 1.0,
"gammaT": 1.01325,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "354-33-6",
"CAS2": "421-14-7",
"F": 0.0,
"Name1": "R125",
"Name2": "RE143A",
"betaT": 1.00105,
"betaV": 1.0,
"gammaT": 1.00517,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "75-72-9",
"CAS2": "75-73-0",
"F": 0.0,
"Name1": "R13",
"Name2": "R14",
"betaT": 0.99884,
"betaV": 1.0,
"gammaT": 0.99334,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "75-72-9",
"CAS2": "75-46-7",
"F": 0.0,
"Name1": "R13",
"Name2": "R23",
"betaT": 1.00234,
"betaV": 1.0,
"gammaT": 0.93027,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "811-97-2",
"CAS2": "1717-00-6",
"F": 0.0,
"Name1": "R134A",
"Name2": "R141B",
"betaT": 1.00716,
"betaV": 1.0,
"gammaT": 0.96823,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "811-97-2",
"CAS2": "75-68-3",
"F": 0.0,
"Name1": "R134A",
"Name2": "R142B",
"betaT": 1.00176,
"betaV": 1.0,
"gammaT": 0.98544,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "811-97-2",
"CAS2": "353-36-6",
"F": 0.0,
"Name1": "R134A",
"Name2": "R161",
"betaT": 1.00101,
"betaV": 1.0,
"gammaT": 1.00619,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "811-97-2",
"CAS2": "76-19-7",
"F": 0.0,
"Name1": "R134A",
"Name2": "R218",
"betaT": 0.99885,
"betaV": 1.0,
"gammaT": 0.9228,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "811-97-2",
"CAS2": "75-45-6",
"F": 0.0,
"Name1": "R134A",
"Name2": "R22",
"betaT": 0.99975,
"betaV": 1.0,
"gammaT": 0.99196,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "811-97-2",
"CAS2": "431-89-0",
"F": 0.0,
"Name1": "R134A",
"Name2": "R227EA",
"betaT": 1.00135,
"betaV": 1.0,
"gammaT": 0.98915,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "811-97-2",
"CAS2": "75-46-7",
"F": 0.0,
"Name1": "R134A",
"Name2": "R23",
"betaT": 1.00246,
"betaV": 1.0,
"gammaT": 1.0219,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "811-97-2",
"CAS2": "690-39-1",
"F": 0.0,
"Name1": "R134A",
"Name2": "R236FA",
"betaT": 0.99958,
"betaV": 1.0,
"gammaT": 1.00198,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "811-97-2",
"CAS2": "421-14-7",
"F": 0.0,
"Name1": "R134A",
"Name2": "RE143A",
"betaT": 0.99957,
"betaV": 1.0,
"gammaT": 0.99594,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "75-73-0",
"CAS2": "75-46-7",
"F": 0.0,
"Name1": "R14",
"Name2": "R23",
"betaT": 1.01673,
"betaV": 1.0,
"gammaT": 0.94295,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "75-73-0",
"CAS2": "108-88-3",
"F": 0.0,
"Name1": "R14",
"Name2": "TOLUENE",
"betaT": 0.92032,
"betaV": 1.0,
"gammaT": 1.18828,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "75-68-3",
"CAS2": "75-45-6",
"F": 0.0,
"Name1": "R142B",
"Name2": "R22",
"betaT": 1.0043,
"betaV": 1.0,
"gammaT": 1.00646,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "75-68-3",
"CAS2": "75-10-5",
"F": 0.0,
"Name1": "R142B",
"Name2": "R32",
"betaT": 0.98803,
"betaV": 1.0,
"gammaT": 0.9751,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "420-46-2",
"CAS2": "75-37-6",
"F": 0.0,
"Name1": "R143A",
"Name2": "R152A",
"betaT": 0.99955,
"betaV": 1.0,
"gammaT": 0.99038,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "420-46-2",
"CAS2": "353-36-6",
"F": 0.0,
"Name1": "R143A",
"Name2": "R161",
"betaT": 0.99931,
"betaV": 1.0,
"gammaT": 0.99556,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "420-46-2",
"CAS2": "75-46-7",
"F": 0.0,
"Name1": "R143A",
"Name2": "R23",
"betaT": 0.99197,
"betaV": 1.0,
"gammaT": 1.00381,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "420-46-2",
"CAS2": "690-39-1",
"F": 0.0,
"Name1": "R143A",
"Name2": "R236FA",
"betaT": 0.99911,
"betaV": 1.0,
"gammaT": 1.01834,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "420-46-2",
"CAS2": "75-10-5",
"F": 0.0,
"Name1": "R143A",
"Name2": "R32",
"betaT": 0.99734,
"betaV": 1.0,
"gammaT": 0.97488,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "75-37-6",
"CAS2": "75-45-6",
"F": 0.0,
"Name1": "R152A",
"Name2": "R22",
"betaT": 1.00239,
"betaV": 1.0,
"gammaT": 1.01169,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "75-37-6",
"CAS2": "431-89-0",
"F": 0.0,
"Name1": "R152A",
"Name2": "R227EA",
"betaT": 1.0088,
"betaV": 1.0,
"gammaT": 0.99527,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "75-37-6",
"CAS2": "75-46-7",
"F": 0.0,
"Name1": "R152A",
"Name2": "R23",
"betaT": 1.00035,
"betaV": 1.0,
"gammaT": 1.02378,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "75-37-6",
"CAS2": "75-10-5",
"F": 0.0,
"Name1": "R152A",
"Name2": "R32",
"betaT": 0.99966,
"betaV": 1.0,
"gammaT": 0.99709,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "353-36-6",
"CAS2": "431-89-0",
"F": 0.0,
"Name1": "R161",
"Name2": "R227EA",
"betaT": 1.00966,
"betaV": 1.0,
"gammaT": 1.02456,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "353-36-6",
"CAS2": "75-10-5",
"F": 0.0,
"Name1": "R161",
"Name2": "R32",
"betaT": 1.00239,
"betaV": 1.0,
"gammaT": 0.98909,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "76-19-7",
"CAS2": "75-45-6",
"F": 0.0,
"Name1": "R218",
"Name2": "R22",
"betaT": 0.98269,
"betaV": 1.0,
"gammaT": 0.91598,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "76-19-7",
"CAS2": "115-25-3",
"F": 0.0,
"Name1": "R218",
"Name2": "RC318",
"betaT": 1.00386,
"betaV": 1.0,
"gammaT": 1.04248,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "75-45-6",
"CAS2": "75-46-7",
"F": 0.0,
"Name1": "R22",
"Name2": "R23",
"betaT": 0.99569,
"betaV": 1.0,
"gammaT": 0.98752,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "75-45-6",
"CAS2": "115-25-3",
"F": 0.0,
"Name1": "R22",
"Name2": "RC318",
"betaT": 1.05268,
"betaV": 1.0,
"gammaT": 0.96966,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "431-89-0",
"CAS2": "75-46-7",
"F": 0.0,
"Name1": "R227EA",
"Name2": "R23",
"betaT": 0.9886,
"betaV": 1.0,
"gammaT": 1.00208,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "431-89-0",
"CAS2": "75-10-5",
"F": 0.0,
"Name1": "R227EA",
"Name2": "R32",
"betaT": 0.98611,
"betaV": 1.0,
"gammaT": 0.97064,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "75-46-7",
"CAS2": "75-10-5",
"F": 0.0,
"Name1": "R23",
"Name2": "R32",
"betaT": 1.00116,
"betaV": 1.0,
"gammaT": 1.00385,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "75-46-7",
"CAS2": "2551-62-4",
"F": 0.0,
"Name1": "R23",
"Name2": "SF6",
"betaT": 0.99445,
"betaV": 1.0,
"gammaT": 0.91843,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "75-46-7",
"CAS2": "108-88-3",
"F": 0.0,
"Name1": "R23",
"Name2": "TOLUENE",
"betaT": 0.96909,
"betaV": 1.0,
"gammaT": 1.07054,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "431-63-0",
"CAS2": "75-10-5",
"F": 0.0,
"Name1": "R236EA",
"Name2": "R32",
"betaT": 0.99812,
"betaV": 1.0,
"gammaT": 1.01165,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "690-39-1",
"CAS2": "75-10-5",
"F": 0.0,
"Name1": "R236FA",
"Name2": "R32",
"betaT": 0.99365,
"betaV": 1.0,
"gammaT": 0.99661,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "75-10-5",
"CAS2": "2551-62-4",
"F": 0.0,
"Name1": "R32",
"Name2": "SF6",
"betaT": 0.9983,
"betaV": 1.0,
"gammaT": 0.86502,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "75-10-5",
"CAS2": "7446-09-5",
"F": 0.0,
"Name1": "R32",
"Name2": "SO2",
"betaT": 1.00238,
"betaV": 1.0,
"gammaT": 0.99968,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "75-10-5",
"CAS2": "108-88-3",
"F": 0.0,
"Name1": "R32",
"Name2": "TOLUENE",
"betaT": 1.01598,
"betaV": 1.0,
"gammaT": 0.98173,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-87-3",
"CAS2": "593-53-3",
"F": 0.0,
"Name1": "R40",
"Name2": "R41",
"betaT": 0.99518,
"betaV": 1.0,
"gammaT": 0.9981,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "74-87-3",
"CAS2": "7440-63-3",
"F": 0.0,
"Name1": "R40",
"Name2": "XENON",
"betaT": 0.96464,
"betaV": 1.0,
"gammaT": 1.03491,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "593-53-3",
"CAS2": "108-88-3",
"F": 0.0,
"Name1": "R41",
"Name2": "TOLUENE",
"betaT": 0.97539,
"betaV": 1.0,
"gammaT": 1.09707,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "593-53-3",
"CAS2": "7440-63-3",
"F": 0.0,
"Name1": "R41",
"Name2": "XENON",
"betaT": 0.97753,
"betaV": 1.0,
"gammaT": 0.91395,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "2551-62-4",
"CAS2": "7440-63-3",
"F": 0.0,
"Name1": "SF6",
"Name2": "XENON",
"betaT": 0.96469,
"betaV": 1.0,
"gammaT": 0.92846,
"gammaV": 1.0
},
{
"BibTeX": "Bell-JCED-2016",
"CAS1": "7446-09-5",
"CAS2": "108-88-3",
"F": 0.0,
"Name1": "SO2",
"Name2": "TOLUENE",
"betaT": 1.01133,
"betaV": 1.0,
"gammaT": 1.02114,
"gammaV": 1.0
}
]