Ideal Gas Mixture
Amagat’s Law
The volume of an ideal gas mixture (V) is equal to the sum of the component volumes (Vj’s) of each
individual component in the gas mixture at the same temperature (T) and total pressure (P) of the
mixture. For example,
Gas A Gas B Gas Mixture
T and P + T and P = T and P
VA VB VA + VB = V
P VA = n A R T P VB = nB R T PV = n RT
VA VB V nA VA nB VB
= = thus = = yA and = = yB
nA nB n n V n V
Dalton’s Law
The total pressure (P) of an ideal gas mixture is equal to the sum of the partial pressures (pj’s) of each
individual component in the gas mixture at the same temperature (T) and total volume (V) of the
mixture. For example,
Gas A Gas B Gas Mixture
T and V + T and V = T and V
pA pB pA + pB = P
p A V = nA R T pB V = nB R T PV = n RT
pA pB P nA pA nB pB
= = thus = = yA and = = yB
nA nB n n P n P
Ideal Gas Mixture
nj Vj pj
xj
= = = = yj for each component j
n V P
Thus, mole fraction (xj) and volume fraction (yj) for an ideal gas mixture are equivalent.
To illustrate the above concepts, the next page presents the “EZ Setup” model
for an ideal gas mixture of 21 mol% O2 and 79 mol% N2 at 25°C and 1 atm.
Note that a gas mixture will behave like an ideal gas when P ≤ about 3 atm.
v11.01.20 © 2011, Michael E. Hanyak, Jr., All Rights Reserved Page 1 of 2
Ideal Gas Mixture
click here to download this model and solve it using the "EZ Setup"/Solver Add-Ins.
"EZ Setup" Mathematical Model
// Amagat's Law and Dalton's Law for Ideal Gas Mixture
// 21 mol% O2 and 79 mol% N2 at 25°C and 1 atm
// Given Information:
R = 0.08205746 // L atm/mol K
T = 25 + 273.15 // K
P = 1 // atm
n = 1 // moles of mixture
n_O2 = 0.21 * n // moles of oxygen
n_N2 = 0.79 * n // moles of nitrogen
// Amagat's Law:
/* mixture */ P * V = n * R * T
/* oxygen */ P * V_O2 = n_O2 * R * T
/* nitrogen */ P * V_N2 = n_N2 * R * T
/* total volume */ V_total = V_O2 + V_N2
/* volume fraction O2 */ y_O2 = V_O2 / V_total
/* volume fraction N2 */ y_N2 = V_N2 / V_total
// Dalton's Law:
/* partial pressure O2 */ p_O2 * V = n_O2 * R * T
/* partial pressure N2 */ p_N2 * V = n_N2 * R * T
/* total pressure */ P_total = p_O2 + p_N2
/* mole fraction O2 */ x_O2 = p_O2 / P_total
/* mole fraction N2 */ x_N2 = p_N2 / P_total
Calculated Results
V = 24.4654 liters p_N2 = 0.79 atm
V_N2 = 19.3277 liters p_O2 = 0.21 atm
V_O2 = 5.13774 liters
V_total = 24.4654 liters P_total = 1 atm
y_N2 = 0.79 vol frac x_N2 = 0.79 mol frac
y_O2 = 0.21 vol frac x_O2 = 0.21 mol frac
v11.01.20 © 2011, Michael E. Hanyak, Jr., All Rights Reserved Page 2 of 2