Tough compounding problem

bobsuruncle

New Member
Joined
Mar 8, 2015
Messages
2
I am building a spreadsheet for a solar project and am having some difficulty computing production accurately when taking into account the decline of the panel's performance.

Typically a panel will lose ~0.5% of its production versus 12 months prior. My spreadsheet is calculating on a quarterly basis.

Let's assume a solar panel that is rated at 100 watts of production in a month. For simplicity, degradation starts at the beginning Jan 1 max production.

So for the month of January the 100 watts of ideal production becomes [1-((1+0.005)^(1/12)-1)]*100 = 99.96 watts.

Then for February it is [1-((1+0.005)^(2/12)-1)]*100 = 99.92

For March it is [1-((1+0.005)^(3/12)-1)]*100 = 99.88 watts

In total for the period I would add those three to get 299.75 watts

But if I want to make the calculation once every 3 months, what is the formula? If I use March's 99.88%x100x3 I am penalizing the production by calculating 299.62 for a difference of 0.13. That doesn't sound like much but over time the compounding difference adds up.

Any help would be greatly appreciated!
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
Try something like this...

=((1-((1+0.005)^(1/12)-1))+(1-((1+0.005)^(2/12)-1))+(1-((1+0.005)^(3/12)-1)))*100


Or this where A1 is the 1st month of a quarter

=((1-((1+0.005)^(A1/12)-1))+(1-((1+0.005)^((A1+1)/12)-1))+(1-((1+0.005)^((A1+2)/12)-1)))*100
 
Upvote 0
Try:
=SUM((1-((1+0.005)^({1,2,3}/12)-1))*100)

Or:
A simpler formula for March only would be:
=100*(1-0.005/12*3)

so, for the 1st qtr, use:
=SUM(100*(1-0.005/12*{1,2,3}))
 
Upvote 0

Forum statistics

Threads
1,216,952
Messages
6,133,709
Members
449,828
Latest member
Satyasri2008

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top