# Variables
t = 304; #temperature of the gas in k
p = 73; #pressure of the gas in atm
r = 0.00366; #universal gas constant in j/K/mole
#ct = 8a/27br;cp = a/27b**2
# Calculations
b = (t*r/(8*p));
a = p*27*b**2;
# Result
print 'the value of the constant b is %.5f \
\nthe value of the constant a is %3.5f'%(b,a)
# Variables
tc = 132; #critical temperature in K
pc = 37.2; #critical pressure in atm
r = 82.07; #universal gas constant in cm**3atm/mole/K
# Calculations
a = 27*(r**2)*(tc**2)/(64*pc); #value of a in atm/cm**6/mol**2
b = r*tc/(8*pc); #value of b in cm**3/mol
# Result
print 'the value of is %.2e atm/cm**6/mol**2 \
\nthe value of b is %3.2f cm**3/mol'%(a,b)
# Variables
p = 2.26*1.013*10**5; #critical pressure in N/m**2
v = 4./69; #critical volume in m**3/kmol
r = 8.31*10**3; #universal gas consmath.tant in J/kmol.K
# Calculations
t = (8*p*v/(3*r)); #critical temperature in K
# Result
print 'critical temperature of the given problem is %3.2f K'%(t)