Problem 1

A gas-powered refrigerator works by taking in heat from a heat exchanger at \({\color[rgb]{0.164799,0.878862,0.723179}500^{\circ} \; C}\) and from a cold space at \({\color[rgb]{0.164799,0.878862,0.723179}-10^{\circ} \; C}\), while rejecting heat to the environment at \({\color[rgb]{0.164799,0.878862,0.723179}35^{\circ} \; C}\). The refrigerator is a cyclic device, and there is no work input or output. Use the Clausius inequality to find the minimum rate at which heat must be supplied by the heat exchanger in order to extract heat at a rate of \({\color[rgb]{0.334690,0.296180,0.998454}1 \; kW}\) from the cold space.

Solution

This problem is very similar to the one covered in Lecture 16. It will be useful to consider the diagram below.

cycle

From the 1st law we have:

\[ \large \require{color} {\color[rgb]{0.334690,0.296180,0.998454}\dot{Q}_{1}} + {\color[rgb]{0.334690,0.296180,0.998454}\dot{Q}_{2}} = {\color[rgb]{0.334690,0.296180,0.998454}\dot{Q}_{3} } \]

and from the second law (the Clausius inequality):

\[ \large \require{color} \sum \frac{{\color[rgb]{0.334690,0.296180,0.998454}\dot{Q}_{i}}}{{\color[rgb]{0.164799,0.878862,0.723179}T_i}} \leq 0 \]

As noted in Lecture 16, the minus sign sign that preceeds \(\require{color}{\color[rgb]{0.334690,0.296180,0.998454}\dot{Q}_{3}}\) denotes it is going out of the system. Eliminating \(\require{color}{\color[rgb]{0.334690,0.296180,0.998454}\dot{Q}_{3}}\) from the two expressions yields:

\[ \large \require{color} \frac{{\color[rgb]{0.334690,0.296180,0.998454}\dot{Q}_{1}}}{{\color[rgb]{0.164799,0.878862,0.723179}T_1}} + \frac{{\color[rgb]{0.334690,0.296180,0.998454}\dot{Q}_{2}}}{{\color[rgb]{0.164799,0.878862,0.723179}T_2}} - \frac{\left( {\color[rgb]{0.334690,0.296180,0.998454}\dot{Q}_{1}} + {\color[rgb]{0.334690,0.296180,0.998454}\dot{Q}_{2}}\right) }{{\color[rgb]{0.164799,0.878862,0.723179}T_3}} \leq 0 \]

Rearranging the above gives

\[ \large \require{color} \frac{{\color[rgb]{0.334690,0.296180,0.998454}\dot{Q}_{1}}}{{\color[rgb]{0.334690,0.296180,0.998454}\dot{Q}_{2}}} \geq \left( \frac{{\color[rgb]{0.164799,0.878862,0.723179}1/T_2} - {\color[rgb]{0.164799,0.878862,0.723179}1/T_3}}{{\color[rgb]{0.164799,0.878862,0.723179}1/T_3} - {\color[rgb]{0.164799,0.878862,0.723179}1/T_1}} \right) \]

with the numerical solution given below.

Code
import numpy as np

absolute_zero = 273.15 
T_1 = 500 + absolute_zero # all in Kelvin!
T_2 = -10 + absolute_zero
T_3 = 35 + absolute_zero
dot_Q1_by_dot_Q2 = (1./T_2 - 1./T_3)/(1./T_3 - 1./T_1)
dot_Q2 = 1 # kW
dot_Q1 = dot_Q1_by_dot_Q2 * dot_Q2
print('The minimum heat supply rate from the heat exchanger (source) is '+str(np.round(dot_Q1, 3))+' kW')
The minimum heat supply rate from the heat exchanger (source) is 0.284 kW

Problem 2

A cyclic heat pump takes \({\color[rgb]{0.334690,0.296180,0.998454}600 \; MJ}\) (mega joules) of heat at \({\color[rgb]{0.164799,0.878862,0.723179}27^{\circ} \; C}\) while rejecting heat to a system whose temperature rises \({\color[rgb]{0.164799,0.878862,0.723179}1^{\circ} \; C}\) for each MJ of energy supplied to it. Initially this system is also at \({\color[rgb]{0.164799,0.878862,0.723179}27^{\circ} \; C}\).

  1. Explain why there is a limit on the final temperature of the system. State whether it is an upper or lower limit, and under what circumstances it would be reached.
  2. Calculate the limit on the final temperature of the system. What is the work input to the heat pump when this limit is achieved?
Solution

As before, it will be useful to sketch out a diagram of the process above.

cycle

  1. From the first law, it is clear that

\[ \large \require{color} {\color[rgb]{0.334690,0.296180,0.998454}\delta Q_2}= {\color[rgb]{0.334690,0.296180,0.998454}\delta Q_1} + {\color[rgb]{0.562040,0.190215,0.568721}\delta W}. \]

Note that if the pump were reversible, then it would be as efficient as possible, implying that the amount of work \(\require{color}{\color[rgb]{0.562040,0.190215,0.568721}\delta W}\) required by the pump would be as low as possible. This sets a lower limit on work, which consequently also sets a lower limit on \(\require{color}{\color[rgb]{0.334690,0.296180,0.998454}\delta Q_2}\), and therefore on \(\require{color}{\color[rgb]{0.164799,0.878862,0.723179}T_2}\).

  1. Consider the Clausius statement (with appropriate signs)

\[ \large \require{color} \frac{{\color[rgb]{0.334690,0.296180,0.998454}\delta Q_1}}{{\color[rgb]{0.164799,0.878862,0.723179}T_1}} - \frac{{\color[rgb]{0.334690,0.296180,0.998454}\delta Q_2}}{{\color[rgb]{0.164799,0.878862,0.723179}T_2}} \leq 0 \]

From the problem statement, we can infer that the constant \({\color[rgb]{0.000000,0.000000,0.000000}c = 1 \; MJ/K}\), leading to

\[ \large \require{color} \frac{c {\color[rgb]{0.164799,0.878862,0.723179}\delta T_2}}{{\color[rgb]{0.164799,0.878862,0.723179}T_2}} \geq \frac{{\color[rgb]{0.334690,0.296180,0.998454}\delta Q_1}}{{\color[rgb]{0.164799,0.878862,0.723179}T_1}}. \]

Integrating both sides of this equation

\[ \large \require{color} \int_{{\color[rgb]{0.164799,0.878862,0.723179}300}}^{{\color[rgb]{0.164799,0.878862,0.723179}T_f}}\frac{c {\color[rgb]{0.164799,0.878862,0.723179}\delta T_2}}{{\color[rgb]{0.164799,0.878862,0.723179}T_2}} \geq \frac{{\color[rgb]{0.334690,0.296180,0.998454}Q_1}}{{\color[rgb]{0.164799,0.878862,0.723179}T_1}} \]

\[ \large \require{color} \Rightarrow 1 \times ln \left( \frac{{\color[rgb]{0.164799,0.878862,0.723179}T_f}}{{\color[rgb]{0.164799,0.878862,0.723179}300.15}} \right) \geq \frac{{\color[rgb]{0.334690,0.296180,0.998454}600}}{{\color[rgb]{0.164799,0.878862,0.723179}300.15}}\Rightarrow {\color[rgb]{0.164799,0.878862,0.723179}T_f} \geq {\color[rgb]{0.164799,0.878862,0.723179}2217.82 \; K} \]

Note that for the reversible case

\[ \large \require{color} {\color[rgb]{0.334690,0.296180,0.998454}Q_2} = \left({\color[rgb]{0.164799,0.878862,0.723179}2217.82} - {\color[rgb]{0.164799,0.878862,0.723179}300.15} \right) / c = {\color[rgb]{0.334690,0.296180,0.998454}1917.67} \; {\color[rgb]{0.334690,0.296180,0.998454}MJ} \]

Thus the work input is

\[ \large \require{color} {\color[rgb]{0.562040,0.190215,0.568721}W} = {\color[rgb]{0.334690,0.296180,0.998454}1917.67} - {\color[rgb]{0.334690,0.296180,0.998454}600} = {\color[rgb]{0.562040,0.190215,0.568721}1316.7 \; MJ} \].