Problem 1

A gas-powered refrigerator works by taking in heat from a heat exchanger at 500C and from a cold space at 10C, while rejecting heat to the environment at 35C. 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 1kW 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:

Q˙1+Q˙2=Q˙3

and from the second law (the Clausius inequality):

Q˙iTi0

As noted in Lecture 16, the minus sign sign that preceeds Q˙3 denotes it is going out of the system. Eliminating Q˙3 from the two expressions yields:

Q˙1T1+Q˙2T2(Q˙1+Q˙2)T30

Rearranging the above gives

Q˙1Q˙2(1/T21/T31/T31/T1)

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 600MJ (mega joules) of heat at 27C while rejecting heat to a system whose temperature rises 1C for each MJ of energy supplied to it. Initially this system is also at 27C.

  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

δQ2=δQ1+δW.

Note that if the pump were reversible, then it would be as efficient as possible, implying that the amount of work δ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 δQ2, and therefore on T2.

  1. Consider the Clausius statement (with appropriate signs)

δQ1T1δQ2T20

From the problem statement, we can infer that the constant c=1MJ/K, leading to

cδT2T2δQ1T1.

Integrating both sides of this equation

300TfcδT2T2Q1T1

1×ln(Tf300.15)600300.15Tf2217.82K

Note that for the reversible case

Q2=(2217.82300.15)/c=1917.67MJ

Thus the work input is

W=1917.67600=1316.7MJ.