Pure Fluid Thermodynamics
As detailed on the Nomenclature page, JSteam uses the REFPROP thermodynamic and transport property reference if a component/fluid/mixture is specified.
Available Fluids
To see all available fluids (also known as components) available for thermodynamic and transport functions, use:
This will print all currently available fluids within JSteam. In many cases a fluid might be known by multiple names, or commonly referred to by its chemical formula, for example:
In the above case for D4, JSteam will recognise 'D4'
, 'Octamethylcyclotetrasiloxane'
, 'C8H24O4Si4'
and 'Octamethylcyclotetrasiloxane (D4)'
for flexibility (including ignoring case). Simple use the name that is most meaningful for your business. If you want to access the names of fluids and their variations, you can use:
Thermodynamic Property Functions
The below are some example thermodynamic routines that can be called. Note use JSteamMEX('help')
to see a full list of all available property pairings for pure fluids.
S = JSteamMEX('SPT',1,100) % Specific Entropy
Cp = JSteamMEX('CpPT',1,100) % Isobaric Heat Capacity
Cv = JSteamMEX('CvPT',1,100) % Isochoric Heat Capacity
V = JSteamMEX('VPT',1,100) % Specific Volume
Saturation Functions
A dedicated set of functions exist for working with saturated properties of a fluid. For example, to compute the vapour pressure curve of Oxygen:
JSteamMEX('SetUnit','Temperature','C')
JSteamMEX('SetUnit','Pressure','kPa')
% Compute Vapour Pressure (Saturated Pressure) across this temp range
t = linspace(-210,-120,100);
Psat = JSteamMEX('PSatcT','Oxygen',t)
% Plot a nice curve
plot(t,Psat,'.-'); grid on;
xlabel('T_{sat} [^{\circ}C]')
ylabel('P_{sat} [kPa]')
title('Vapour-Liquid Saturation Curve of Oxygen')
% Return to default units
JSteamMEX('SetDefaultUnits')

There are a range of other pure fluid saturation functions available from JSteam + REFPROP and the user is encouraged to use JSteamMEX('help')
to identify routines as required.
Transport Property Functions
In addition to thermodynamic functions, the database also provides two routines for transport functions (thermal conductivity and viscosity). Unlike with IAPWS IF-97, REFPROP provides a large number of property pairings for computation of these properties.
U = JSteamMEX('UcPT','Methane',10,100) % Viscosity of Methane [uPa.s]
Note the default JSteam units for these properties are non-standard, but have been chosen to provide "sensible" numbers to common operating regions, and thus avoiding large numbers of decimal places.
Other Properties
In addition to the above functions, JSteam provides methods for heating value and molecular weight:
GHV = JSteamMEX('GHV','Methane') % Gross (Higher) Heating Value
MW = JSteamMEX('MW','Methane') % Molecular Weight
as well as information on the fluid itself, and range of validity for calculations:
% Temperature of the Triple Point (TTrip)
% Normal Boiling Temperature (TNBpt)
% Acentric Factor (w)
% Temperature Validity Range (Tmin -> TMax)
% Maximum Valid Density (DMax)
% Maximum Valid Pressure (PMax)
[Tc,Pc,Vc,TTrip,TNBpt,w,TMax,TMin,DMax,PMax] = JSteamMEX('Info','Methane')