Add tpx citations

This commit is contained in:
Ingmar Schoegl 2023-08-07 22:35:06 -05:00 committed by Ray Speth
parent 1f580a3978
commit fd40e884b6
9 changed files with 28 additions and 14 deletions

View File

@ -206,6 +206,13 @@
doi = {10.11588/heidok.00005889}, doi = {10.11588/heidok.00005889},
url = {https://dx.doi.org/10.11588/heidok.00005889}, url = {https://dx.doi.org/10.11588/heidok.00005889},
year = {2005}} year = {2005}}
@book{reynolds1979,
author = {W.~C.~Reynolds},
title = {Thermodynamic Properties in {SI}: graphs, tables, and computational
equations for forty substances},
publisher = {Stanford University},
address = {Stanford},
year = {1979}}
@article{selle1999, @article{selle1999,
author = {S.~Selle and U.~Riedel}, author = {S.~Selle and U.~Riedel},
journal = {Annals of the New York Academy of Sciences}, journal = {Annals of the New York Academy of Sciences},
@ -254,6 +261,18 @@
doi = {10.1252/jcej.7.417}, doi = {10.1252/jcej.7.417},
url = {https://doi.org/10.1252/jcej.7.417}, url = {https://doi.org/10.1252/jcej.7.417},
year = {1975}} year = {1975}}
@article{tillner-roth1994,
author = {R.~Tillner-Roth and H.~D.~Baehr},
journal = {Journal of Physical and Chemical Reference Data},
number = {5},
pages = {657--729},
title = {An International Standard Formulation for the Thermodynamic
Properties of 1,1,1,2-Tetrafluoroethane ({HFC-134a}) for Temperatures from
170 {K} to 455 {K} and Pressures up to 70 {MPa}},
doi = {10.1063/1.555958},
url = {https://dx.doi.org/10.1063/1.555958},
volume = {23},
year = {1994}}
@article{tsang1991, @article{tsang1991,
author = {W.~Tsang and J.~T.~Herron}, author = {W.~Tsang and J.~T.~Herron},
journal = {Journal of Physical and Chemical Reference Data}, journal = {Journal of Physical and Chemical Reference Data},

View File

@ -12,7 +12,7 @@ namespace tpx
{ {
//! Pure species representation of carbon dioxide. Values and functions are //! Pure species representation of carbon dioxide. Values and functions are
//! from "Thermodynamic Properties in SI" by W.C. Reynolds //! from Reynolds @cite reynolds1979.
class CarbonDioxide : public Substance class CarbonDioxide : public Substance
{ {
public: public:

View File

@ -12,12 +12,8 @@ namespace tpx
{ {
//! Equation of state for HFC-134a. //! Equation of state for HFC-134a.
//! //!
//! Implements the equation of state given in: //! Implements the equation of state given in Tillner-Roth and Baehr
//! R. Tillner-Roth and H. D. Baehr. "An International Standard Formulation for //! @cite tillner-roth1994.
//! The Thermodynamic Properties of 1,1,1,2-Tetrafluoroethane (HFC-134a) for
//! Temperatures From 170 K to 455 K and Pressures up to 70 MPa". J. Phys.
//! Chem. Ref. Data, Vol. 23, No. 5, 1994. pp. 657--729.
//! http://dx.doi.org/10.1063/1.555958
class HFC134a : public Substance class HFC134a : public Substance
{ {
public: public:

View File

@ -11,7 +11,7 @@
namespace tpx namespace tpx
{ {
//! Pure species representation of heptane. Values and functions are //! Pure species representation of heptane. Values and functions are
//! from "Thermodynamic Properties in SI" by W.C. Reynolds //! from Reynolds @cite reynolds1979.
class Heptane : public Substance class Heptane : public Substance
{ {
public: public:

View File

@ -12,7 +12,7 @@ namespace tpx
{ {
//! Pure species representation of hydrogen. Values and functions are //! Pure species representation of hydrogen. Values and functions are
//! from "Thermodynamic Properties in SI" by W.C. Reynolds //! from Reynolds @cite reynolds1979.
class hydrogen : public Substance class hydrogen : public Substance
{ {
public: public:

View File

@ -12,7 +12,7 @@ namespace tpx
{ {
//! Pure species representation of methane. Values and functions are //! Pure species representation of methane. Values and functions are
//! from "Thermodynamic Properties in SI" by W.C. Reynolds //! from Reynolds @cite reynolds1979.
class methane : public Substance class methane : public Substance
{ {
public: public:

View File

@ -12,7 +12,7 @@ namespace tpx
{ {
//! Pure species representation of nitrogen. Values and functions are //! Pure species representation of nitrogen. Values and functions are
//! from "Thermodynamic Properties in SI" by W.C. Reynolds //! from Reynolds @cite reynolds1979.
class nitrogen : public Substance class nitrogen : public Substance
{ {
public: public:
@ -50,4 +50,3 @@ private:
} }
#endif // ! TPX_NITROGEN_H #endif // ! TPX_NITROGEN_H

View File

@ -11,7 +11,7 @@
namespace tpx namespace tpx
{ {
//! Pure species representation of oxygen. Values and functions are //! Pure species representation of oxygen. Values and functions are
//! from "Thermodynamic Properties in SI" by W.C. Reynolds //! from Reynolds @cite reynolds1979.
class oxygen : public Substance class oxygen : public Substance
{ {
public: public:

View File

@ -11,7 +11,7 @@
namespace tpx namespace tpx
{ {
//! Pure species representation of water. Values and functions are from //! Pure species representation of water. Values and functions are from
//! "Thermodynamic Properties in SI" by W.C. Reynolds //! from Reynolds @cite reynolds1979.
class water : public Substance class water : public Substance
{ {
public: public: