Contents
- Index
IdealGasTransportProps2
The calling protocol is
Call IdealGasTransportProps2(N,G$[1..N],T,P,f[1..N]: mu, k, Pr)
Inputs:
N number of components in the mixture
G$[1..N] an array of string constants or string variables that contains the names of the ideal gases that make up the mixture (and are contained in the EES property library).
T the temperature in the units EES is configured to work in.
P the pressure in the units EES is configured to work in. (Pressure is used only for calculation of specific entropy)
f[1..N] the mass or mole fractions of the gases in the string array G$[1..N]. The sum of the values of f must add to 1.0. Supply mass fractions if EES is configured to work with specific properties on a mass basis. Otherwise, supply mole fractions.
Outputs:
mu The viscosity of the gas mixture determined using the Wilke Approximation as described in Eq. 9-5.2 of Reid, Prausnitz, and Sherwood.
k The thermal conductivity of the gas mixture determined using the Mason and Saxena modification, as described in Eq. 10-6.2. of Reid, Prausnitz, and Sherwood.
Pr The Prandtl number for the gas mixture.
Example:
$UnitSystem SI Mass J K Pa
$VarInfo T Units = 'K'
$VarInfo P Units = 'Pa'
$VarInfo mu Units = 'Pa-s'
$VarInfo k Units = 'W/m-K'
$VarInfo Pr Units = '-'
N = 3
G$[1] = 'N2'
G$[2] = 'O2'
G$[3] = 'CO2'
T = 400 [K]
P = 100000 [Pa]
f[1] = 0.2
f[2] = 0.4
f[3] = 0.4
CALL IdealGasMixtureTransportProps2(N,G$[1..N],T,P,f[1..N]: mu, k, Pr)
{Solution:
mu = 0.00002258 [Pa-s]
k = 0.0305 [W/m-K]
Pr = 0.7148}
Return to Index