Heat engine

By means of the thermal energy of a hot cup of coffee, we want to regain a part of the electric energy that was necessary to heat the coffee water. We have a perfectly functioning heat engine available, which achieves the optimal thermodynamic efficiency. What is the proportion of the heat energy η rec = W Q heat \eta_\text{rec} = \frac{W}{Q_\text{heat}} which we can recover from the cup of coffee?


Details and Assumptions:

  • The temperatures of the coffee and water bath are T 1 = 10 0 C T_1 = 100^\circ\text{C} and T 2 = 2 0 C T_2 = 20^\circ\text{C} , respectively
  • The coffee cup and water bath have volumes V 1 = 400 ml V_1 = 400 \,\text{ml} and V 2 = 2 l V_2 = 2 \,\text{l} , respectively
  • The specific heat capacities of the coffee and water are the same (the heat capacities of the cup and bowl are neglected).
  • An energy of Q heat = C 1 ( T 1 T 2 ) Q_\text{heat} = C_1 (T_1 - T_2) was used to heat the coffee ( C 1 (C_1 is the heat capacity of the coffee ) . ).


The answer is 0.097823.

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

2 solutions

Steven Chase
Sep 28, 2017

Here's a code-based solution:

import math

C = 4184.0 # J/(kg * K)

T1 = 100.0 + 273.15
T2 = 20.0 + 273.15

m1 = 0.4
m2 = 2.0

Qheat = m1*C*(T1 - T2)

dQ = 10.0**(-3.0)

W = 0.0

while T1 - T2 > 0.001:

    dT1 = dQ / (m1*C)

    T1 = T1 - dT1

    e = 1.0 - T2/T1

    dW = dQ * e

    W = W + dW

    dQ2 = dQ * (1.0 - e)

    dT2 = dQ2 / (m2*C)

    T2 = T2 + dT2

print T1
print T2
print ""
print W/Qheat

Markus Michelmann
Sep 28, 2017

The optimal thermodynamic efficiency (Carnot efficency) reads d W d Q 1 = η = 1 T 2 T 1 \frac{dW}{|dQ_1|} = \eta = 1 - \frac{T_2}{T_1} With initial temperatures T 1 = 373 K T_1 = 373 \,\text{K} and T 2 = 293 K T_2 = 293 \,\text{K} , the heat engine start with an efficiency of η 21 % \eta \approx 21 \,\text{\%} . However, the efficiency decreases in the course of the heat transfer, which adjusts the temperature of the coffee and the water. With the help of energy conservation d Q 1 = d W + d Q 2 -dQ_1 = dW + dQ_2 , we get C 2 d T 2 C 1 d T 1 = d Q 2 d Q 1 = 1 η = T 2 T 1 C 2 d T 2 T 2 = C 1 d T 1 T 1 C 2 T 2 T f d T 2 T 2 = C 1 T 2 T f d T 1 T 1 C 2 ln T f T 2 = C 1 ln T f T 1 ( T f T 2 ) C 2 = ( T f T 1 ) C 1 T f = T 1 x T 2 1 x 305.18 K , x = C 1 C 1 + C 2 = 1 6 \begin{aligned} & & - \frac{C_2 dT_2}{C_1 d T_1} &= -\frac{dQ_2}{dQ_1} = 1 - \eta = \frac{T_2}{T_1} \\ \Rightarrow & & C_2 \frac{dT_2}{T_2} &= - C_1 \frac{dT_1}{T_1} \\ \Rightarrow & & C_2 \int_{T_2}^{T_f} \frac{dT_2}{T_2} &= - C_1 \int_{T_2}^{T_f} \frac{dT_1}{T_1} \\ \Rightarrow & & C_2 \ln \frac{T_f}{T_2} &= - C_1 \ln \frac{T_f}{T_1} \\ \Rightarrow & & \left( \frac{T_f}{T_2} \right)^{C_2} &= \left( \frac{T_f}{T_1} \right)^{-C_1} \\ \Rightarrow & & T_f &= T_1^x T_2^{1-x} \approx 305.18 \,\text{K}, \quad x = \frac{C_1}{C_1 + C_2} = \frac{1}{6} \end{aligned} This final temperature T f T_f is slightly lower than the weighted average T m = C 1 T 1 + C 2 T 2 C 1 + C 2 306.48 K T_m = \frac{C_1 T_1 + C_2 T_2}{C_1 + C_2} \approx 306.48 \,\text{K} that would result as mixing temperature from coffee and water. The energy difference W = ( C 1 + C 2 ) T m ( C 1 + C 2 ) T f W = (C_1 + C_2) T_m - (C_1 + C_2) T_f corresponds to the work W W of the heat engine. To heat the coffee water was an energy of Q heat = C 1 ( T 1 T 2 ) Q_\text{heat} = C_1 (T_1 - T_2) necessary, so that the recovery efficiency results to η rec = W Q heat = 6 T m T f T 1 T 2 9.78 % \eta_\text{rec} = \frac{W}{Q_\text{heat}} = 6 \frac{T_m - T_f}{T_1 - T_2} \approx 9.78 \,\text{\%}

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...