- Posts: 21
Export to Excel, Flat Plate PV
- Tom Durston
- Topic Author
Less
More
18 Jun 2014 11:04 #2393
by Tom Durston
Export to Excel, Flat Plate PV was created by Tom Durston
I created files in the Flate Plate PV, Commercial PPA model and executed Send to Excel with Equations. The resulting spreadsheet has a slightly lower energy output in year 1 than the SAM model result. In the spreadsheet, the year 1 degradation in cell D8 = 1 - Degradation, but in the SAM model output the Degradation factor is not applied to the Annual Energy in year 1.
Please Log in or Create an account to join the conversation.
- pgilman
Less
More
- Posts: 5423
18 Jun 2014 16:39 #2394
by pgilman
Replied by pgilman on topic Export to Excel, Flat Plate PV
Dear Tom,
It looks like the logic of the IF statement in the Cell D8 formula is incorrect.
The incorrect formula is:
=IF(ISNUMBER(outYear),IF(outYear>1,(1-inDegradation)^(outYear-1),1-inDegradation),"")
The correct formula is:
=IF(ISNUMBER(outYear),IF(outYear>1,1-inDegradation,(1-inDegradation)^(outYear-1)),"")
You should at least replace the formula in Cell D8, but to be more complete, you should replace Cells D8:CY8.
Best regards,
Paul.
It looks like the logic of the IF statement in the Cell D8 formula is incorrect.
The incorrect formula is:
=IF(ISNUMBER(outYear),IF(outYear>1,(1-inDegradation)^(outYear-1),1-inDegradation),"")
The correct formula is:
=IF(ISNUMBER(outYear),IF(outYear>1,1-inDegradation,(1-inDegradation)^(outYear-1)),"")
You should at least replace the formula in Cell D8, but to be more complete, you should replace Cells D8:CY8.
Best regards,
Paul.
Please Log in or Create an account to join the conversation.
Moderators: pgilman