Processing math: 100%

ME 200 – Thermodynamics I – Spring 2020

Homework 31: Isentropic Processes and Efficiencies

Part (i): Nozzle

Part (ii): Turbine

Part (iii): Compressor

Part (i): Nozzle

Given:

Air at 200 kPa and 950 K enters an adibatic nozzle and leaves at 80 kPa.

In [30]:
#Given Inputs: 
P_1 = 200                   # air pressure entering the nozzle [kPa]
T_1 = 950                   # air temperature entering the nozzle [K]
V_1 = 0.                    # neglect inlet velocity 
P_2 = 80                    # air pressure leaving the nozzle [kPa]
eta_N = 0.92                # nozzle efficiency 

Find:

a) The maximum possible exit velocity

b) The minimum possible exit temperature

c) The exit velocity and temperature for an isentropic efficiency of 92%, depict the real and ideal processes on a T-s diagram

System Diagram:

The system is the air inside the nozzle.

Assumptions:

1) open system, 2) steady state, steady flow (SSSF) 3) adiabatic (no heat transfer to the surroundings), 4) air is an ideal gas, 5) negelect changes in potential energy, 6) no work, 7) internally reversible process for parts a and b

Basic Equations:

dmdt=Σ˙minΣ˙moutdSdt=j˙QjTj,boundary+in˙minsinout˙moutsout+˙σgenerationdEdt=˙Q˙W+in˙min(h+ke+pe)inout˙mout(h+ke+pe)outηN=V22V22s(P2P1)s=(Pr2Pr1)s

Solution:

A mass balance is applied to the flow stream with the assumption of steady flow (dm/dt=0).

˙m2=˙m1=˙m

Entropy and energy balances are applied to the entire system with the assumption of SSSF (dS/dt=0=dE/dt), no change in potential energy, no work, adiabatic, and internally reversible (parts a and b). The simplified energy and entropy balances become

0=˙m(h1+V212)˙m(h2+V222)s2s=s1

Thus, the isentropic relations for ideal gases can be used to determine the minimum exit temperature

(P2P1)s=(Pr2Pr1)sPr2=Pr1(P2P1)s
In [31]:
Pr_1 = 93.08         # relative pressure for air at T1

Pr_2 = Pr_1*(P_2/P_1)

print('Pr_2 = ',round(Pr_2,5))
Pr_2 =  37.232

The temperature associated with Pr2 can be found in the ideal gas tables (T2s) and represents the minimum possible temperature at the exit of the nozzle as this assumes there are not irreversibilities. From the tables,

T2s=749.4K

Using the isentropic temperature, the isentropic enthalpy can also be found in the ideal gas tables (h2s) and used to determine the isentropic velocity using the energy balance with negligible inlet velocity

V22s2=h1h2

V2s represents the maximum possible exit velocity for this adiabatic nozzle.

In [32]:
h_1 = 989.2                     # specific enthalpy of air at state 1 [kJ/kg]

T_2s = 749.4                    # temperature of air at state 2s [K]
h_2s = 766.6                    # specific enthalpy of air at state 2s [kJ/kg]

V_2s = (2*(h_1-h_2s)*1000)**.5  # maximum possible exit velocity [m/s]

print('V_2s = ',round(V_2s,1),' m/s')
V_2s =  667.2  m/s

The actual velocity can be determined using an isentropic efficiency along with the insentropic velocity.

ηN=V22V22s

so that

V2=(ηN)0.5V2s

Using the actual velocity, the actual enthalpy value for state 2 can then be determined using the energy balance.

h2=h1V222

Finally, the ideal gas tables and the actual enthalpy value can be used to determine the actual temperature of state 2.

In [33]:
V_2 = V_2s*(eta_N)**.5      # Actual exit velocity [m/s]
h_2 = h_1-(V_2)**2/2000     # Actual exit enthalpy [kJ/kg]
T_2 = 765.7                 # Actual temperature of air at state 2 [K]   

print('V_2 = ',round(V_2,1),' m/s')
print('h_2 = ',round(h_2,1),' kJ/kg')
V_2 =  640.0  m/s
h_2 =  784.4  kJ/kg

The exit air temperature assocated with this enthalpy is T2=765.7K.

Part(ii): Turbine

Given:

Steam enters an adiabtic turbine at 8 MPa and 520°C with a mass flow rate of 3 kg/s and leaves at 30 kPa. The isentropic efficiency is 90%.

In [34]:
#Given Inputs:
P_1 = 8000               # turbine inlet pressure [kPa]
T_1 = 520+273.15         # turbine inlet temperature [K]
m_dot = 3                # turbine inlet mass flow rate [kg/s]
P_2 = 30                 # turbine outlet pressure [kPa]
eta_T = 0.9              # turbine isentropic efficiency

Find:

a) The temperature at the turbine exit

b) The power output of the turbine

Depict the process on a T-s digram.

System Diagram:

Assumptions:

1) open system, 2) steady state, steady flow (SSSF) 3) adiabatic (no heat transfer to the surroundings), 4) negelect changes in kinetic and potential energy

Basic Equations:

dmdt=Σ˙minΣ˙moutdSdt=j˙QjTj,boundary+in˙minsinout˙moutsout+˙σgenerationdEdt=˙Q˙W+in˙min(h+ke+pe)inout˙mout(h+ke+pe)outηT=wactws

Solution:

A mass balance is applied to the flow stream with the assumption of steady flow (dm/dt=0).

˙m2=˙m1=˙m

An energy balance is applied to the entire system with the assumption of SSSF (dE/dt=0), no changes in potential andkinetic energy, and adiabatic. The simplified energy balance becomes

˙W12=˙m(h1h2)

The entropy balance for an internally reversible and adiabatic tubiine leads to an isentropic process such that

s2s=s1

The enthalpy for state 1 can be found in the SHV tables at the given conditions (h1=h(P1,T1)). Using the entropy from state 1 and the pressure at states 2, the entahlpy for the isentropic state 2 can be found in the SLVM tables.

h2s=h(P2,s=s1)

Using the value for the isentropic enthalpy at state 2, the isentropic work for the turbine can determined from the energy balance.

˙W12s=˙m(h1h2s)

Finally, the turbine isentropic efficiency can be used to find the actual work and the energy balance can be applied to find the actual enthalpy at state 2.

˙W12=ηT˙W12sh2=h1˙W12˙m

Given the exit enthalpy and pressure, the temperature at state 2 can be determined. Since the enthalpy falls between the saturated liquid and saturated vapor values for the exit pressure, the temperature is the saturation temperature at P2

In [35]:
import CoolProp.CoolProp as CP

h_1 = CP.PropsSI('H','T',T_1,'P',P_1*1000,'Water')/1000.         # enthalpy of steam enetering the turbine [kJ/kg]
s_1 = CP.PropsSI('S','T',T_1,'P',P_1*1000,'Water')/1000.         # entropy of steam entering the turbine [kJ/kgK]
h_2s = CP.PropsSI('H','S',s_1*1000,'P',P_2*1000,'Water')/1000.   # enthalpy of steam leaving an isentropic turbine [kJ/kg]

W_dot_12s = m_dot*(h_1-h_2s)                                     # isentropic power [kW]
W_dot_12 = W_dot_12s*eta_T                                       # actual power [kW]
h_2 = h_1-W_dot_12/m_dot                                         # enthalpy of steam leaving the turbine

T_2 = CP.PropsSI('T','H',h_2*1000,'P',P_2*1000,'Water')-273.15   # temperature leaving the turbine [C]

print('h_1 = ',round(h_1,1),'kJ\kg')
print('s_1 = ',round(s_1,5),'kJ\K')
print('h_2s = ',round(h_2s,1),'kJ\kg')
print('W_dot_12s = ',round(W_dot_12s,1),'kW')
print('W_dot_12 = ',round(W_dot_12,1),'kW')
print('h_2 = ',round(h_2,1),'kJ\kg')
print('T_2 = ',round(T_2,1),'C')
h_1 =  3448.7 kJ\kg
s_1 =  6.78948 kJ\K
h_2s =  2289.8 kJ\kg
W_dot_12s =  3476.7 kW
W_dot_12 =  3129.1 kW
h_2 =  2405.7 kJ\kg
T_2 =  69.1 C

Part(iii): Compressor

Given:

A steady state and adiabatic air compressor has inlet conditions of 27°C and 95 kPa and exit conditions of 277°C and 600 kPa.

In [36]:
#Given Inputs:
T_1 = 27+273     # compressor inlet temperature [K]
P_1 = 95         # compressor inlet pressure [kPa]
T_2 = 277+273    # compressor outlet temperature [K]
P_2 = 600        # compressor outlet pressure [kPa]

Find:

a) The isentropic efficiency of the compressor

b) The exit temperature of the air if the process is reversible

Depict the actual and reversible process on a T-s diagram.

System Diagram:

The system is the air inside the compressor.

Assumptions:

1) open system, 2) steady state, steady flow (SSSF) 3) adiabatic (no heat transfer to the surroundings), 4) air is an ideal gas, 5) neglect changes in kinetic and potnetial energy, 6) internally reversible process for part b

Basic Equation:

dmdt=Σ˙minΣ˙moutdSdt=j˙QjTj,boundary+in˙minsinout˙moutsout+˙σgenerationdEdt=˙Q˙W+in˙min(h+ke+pe)inout˙mout(h+ke+pe)outηC=wswact(P2P1)s=(Pr2Pr1)s

Solution:

A mass balance is applied to the flow stream with the assumption of steady flow (dm/dt=0).

˙m2=˙m1=˙m

Entropy and energy balances are applied to the system with the assumption of SSSF (dS/dt=0=dE/dt), no changes in potential and kinetic energy, adiabatic, and internally reversible (part b). The simplified energy and entropy balances become

˙W12=˙m(h2h1)s2s=s1

Thus, the isentropic relations for ideal cases can be used to determine the isentropic state.

(P2P1)s=(Pr2Pr1)sPr2=Pr1(P2P1)s
In [37]:
Pr_1 = 1.3860        # relative pressure of air at state at T_1

Pr_2 = Pr_1*(P_2/P_1)

print('Pr_2 = ',round(Pr_2,3))
Pr_2 =  8.754

For this value of Pr2, then the associated temperature for the isentropic process can be found in the ideal gas tables.

T2s=505.5K

The isentropic efficiency can be determined from

ηC=wswact

which reduces to the following based on the simplified energy balances

ηC=h2sh1h2h1

The inlet and exit enthalpies are determined from the ideal gas tables using the given temperatures and the isentropic enthalpy can be found using the calculated valve for T2s.

In [38]:
h_1 = 300.1          # specific enthalpy of air at T_1 [kJ/kg]
h_2 = 555.0          # specific enthalpy of air at given value of T_2 [kJ/kg]
h_2s = 509.0         # specific enthalpy of air at state 2s [kJ/kg] 

eta_c = (h_2s-h_1)/(h_2-h_1)  # compressor isentropic efficiency

print('eta_c = ',round(eta_c,3))
eta_c =  0.82