Chapter 6#

Question #18: Heat Pumps to Save Electricity#

A residential building is using electric element heaters to supply \(Q=20:\kW\) of peak heating load. The building is forced to decrease its electricity consumption by 30%. To this end, a team of consultants recommended using heat pumps with a nominal heating power of \(Q_H=1:\kW\) and \(COP=3.4\). Calculate how many heat pumps have to be used to meet the policy.

Solution Approach a)#

first the amount of electricity savings is to be calculated per heat pump. Then the number of heat pumps are calculated based on how much total electricity has to be saved to meet the criteria. For a heat pump,

\(COP=Q_H/W\)

so

\(W=Q_H/COP\)

and the amount of saved energy compared to element electric heater is

\(S=Q_H-W=Q_H(1-1/COP)\)

#define variables
Q = 20E+3   #total heating load in W
Q_H = 1E+3   #heating capacity of each heat pump
COP = 3.4   #COP of heat pumps

S = Q_H * (1 - 1 / COP)   #electricity savings by each heat pump in W

Q_S = 0.3 * Q   #total electricity savings required in W

n = Q_S / S   #number of heat pumps required

print('The minimum number of heat pumps required is:', f"{n:.1f}")
The minimum number of heat pumps required is: 8.5