Date

Typical refrigerators in rural environments with photovoltaic electricity tend to strain the inverters. There are some very energy efficient refrigerator models as well but the cost for these units is much higher.

We compare between two representative refrigerators.

A typical refrigerator is the Haier, which is basically what we in the states might call a "dorm room refrigerator".

Haier

  • $129 purchase cost
  • 71 L capacity
  • 821 wh per day
  • HNSEW025

The Sundanzer is a well-insulated refrigerator with an improved compressor allowing for much better energy performance.

Sundanzer

  • $700 initial cost
  • 50 L capacity
  • freezer 280 wh per day at 32C
  • refrigerator 114 wh per day at 32 C

To compare these two options, I use the cost of conserved energy which is the ratio of the difference in finance cost over the difference in energy consumption. This can be interpreted as the price of avoided energy allowing a direct comparison with the current or future energy costs.

$ CCE = \frac{\textrm{annualized investment cost}}{\textrm{annual energy savings}} $

In [1]:
%%capture
%pylab inline

We set up two data dictionaries to store the refrigerator performance parameters.

In [2]:
haier = {'initial_cost' : 129.,
         'capacity_liter' : 71.,
         'energy_kWh_per_day' : 0.821}

sundanzer = {'initial_cost' : 700.,
             'capacity_liter' : 50.,
             'energy_kWh_per_day' : 0.114}

We calculate the annual energy savings between the two refrigerators.

In [3]:
days_per_year = 365
annual_energy_savings = ((haier['energy_kWh_per_day'] 
                         - sundanzer['energy_kWh_per_day']) 
                         * days_per_year)
print(annual_energy_savings, 'kWh saved per year')
258.055 kWh saved per year

The initial cost difference between the two refrigerators is

In [4]:
cost_difference = sundanzer['initial_cost'] - haier['initial_cost']
print('difference in initial purchase cost', cost_difference, 'USD')
difference in initial purchase cost 571.0 USD

We can see that the cost of conserved or avoided energy is over 2 USD per kWh

$$ CCE = \frac{\textrm{initial cost difference}}{\textrm{annual energy savings}} = \frac{571\ \textrm{USD}}{258\ \textrm{kWh}} = 2.21 \textrm{USD/kWh}$$

Since photovoltaic electricity, even with expensive battery backup, has levelized costs at or below 0.50 USD/kWh, this is not a cost effective investment if paid for upfront.

Impact of financing

We can also calculate this over a range of financing options and visualize the result. We add the cost of capital and the discounted energy costs over a longer time period in this calculation.

We use from Meier 1984,

$ CCE = \frac{\textrm{investment}}{\textrm{annual energy savings}} \cdot \frac{d}{1 - (1+d)^{-n}} $

Where the annualized investment cost now contains the capital recovery function.

Contour plotting of cost of conserved energy

Below I set up a contour plot with the interest rate on the vertical axis and the finance period in years on the horizontal axis.

In [5]:
def CCE(rate, num_periods):
    return ((sundanzer['initial_cost'] - haier['initial_cost']) 
            / annual_energy_savings * 
            rate / (1 - (1 + rate) ** -num_periods))

num_periods = arange(1,11)
interest_rate = linspace(0.01, 0.10, 20)
N, D = meshgrid(num_periods, interest_rate)
Z = CCE(D, N)

cp = plt.contour(N, D, Z, 
                 levels=(1.5, 1.0, 0.75, 0.6, 0.5, 0.4, 0.3), 
                 colors='k')
plt.clabel(cp, inline=1)
xlabel('Years Financing')
ylabel('Interest Rate')
title('Cost of conserved energy for efficient refrigerator')
show()

We can see that the cost of conserved energy is above the 0.50 USD/kWh unless we have loan times of several years at very attractive rates. It is hard to believe that financing this attractive could be available in these rural markets.

These efficient refrigerators are not designed for cost-constrained markets. It seems plausible that an attractive market exists in these areas for a product with a reduced initial cost and improved efficiency.