4.11: Polytropic Tire Deflation#

Have you ever let the air out of a bike tire. Does the valve feel cold?

Consider a bike tire with a volume of \(V=1.5\:L\) pressurized to a recommended guage pressure of \(P_g=800\:kPa\). The tire is sitting in atmospheric pressure \(P_a=101\:kPa\) and temperature \(T_a=25\degree C\). The tire is then depressurized using a valve where air goes through a polytropic expansion with a constant \(n=1.3\) from tire pressure to atmospheric pressure. Assuming ideal gas application, calculate:

a) the total mass of air stored in the tire

b) the specific volume of air inside the tire

c) the specific volume of depressurized air after the expansion

d) temperature of air after expansion

CH4-Q9.jpg

Solution Approach for a)#

based on ideal gas assumption,

\(PV=mRT\)

so

\(m=PV/(RT)\)

#define variables
P_g = 800E+3   #tire guage pressure in Pa
P_a = 101E+3   #atmospheric pressure in Pa
V = 1.5E-3   #tire volume in m3
T = 25 + 273.15   #temperarture in K
R = 287   #air gas constant in J/kgK

P = P_a + P_g   #absolute pressure in Pa

m = P * V / (R * T)   #mass of air stored in the tire in kg

print('The amount of air stored is:', f"{m:.3f}", 'kg')
The amount of air stored is: 0.016 kg

Solution Approach for b)#

specific volume is calculated as

\(v=V/m\)

v = V / m   #specific volume of air in m3/kg

print('The specific volume of the stored air is:', f"{v:.3f}", 'm3/kg')
The specific volume of the stored air is: 0.095 m3/kg

Solution Approach for c)#

for a polytropic process

\(Pv^n=constant\)

so

\(P_1v_1^n=P_2v_2^n\)

therfore

\(v_2=v_1\times (P_1/P_2)^{(1/n)}\)

n = 1.3   #polytropic constant

v_1 = v   #specific volume of air before expansion in m3/kg
P_1 = P   #pressure of air before expansion in Pa
P_2 = P_a   #pressure of air after expansion in Pa

v_2 = v_1 * (P_1 / P_2) ** (1 / n)   #specific volume of air after expansion

print('The specific volume of air after expansion is:', f"{v_2:.3f}", 'm3/kg')
The specific volume of air after expansion is: 0.511 m3/kg

Solution Approach for d)#

for an ideal gas,

\(Pv=RT\)

therefore

\(T=Pv/R\)

T = P_2 * v_2 / R   #temperature of air after expansion in K

print('The temperature of air after expansion is:', f"{T-273.15:.1f}", 'C')
The temperature of air after expansion is: -93.2 C