Replies: 3 comments 10 replies
-
I would pick a module with the same model and power rating closest to the one you want. If you are after CEC model parameters, you can scale the IL_ref parameter by the ratio of powers and the IV curves should be close.
I don't think so. The SAM list is generated by putting the CEC list through some processing. The SAM module list that pvlib-python distributes is usually behind the latest SAM release. In this case, both modules you want are in the latest SAM release. Look for 'SunPower SPR-E20-333' and 'SunPower SPR-400E-WHT-D' |
Beta Was this translation helpful? Give feedback.
-
Dear @cwhanse Thank you for your quick response! Where do I find out what exactly each column means? Whops, for the second module, I accidentally listed the wrong one, correct would be What would be the recommended way to use the latest SAM release via pvlib-python? Thank you |
Beta Was this translation helpful? Give feedback.
-
I would look at the datasheets and check the vintages:
I was able to get the AMAX modules like this: >>> import pvlib
>>> url = "https://raw.githubusercontent.com/NREL/SAM/develop/deploy/libraries/CEC%20Modules.csv"
>>> cec_modules = pvlib.pvsystem.retrieve_sam(name=None, path=url)
>>> sunpower_modules = cec_modules.T[cec_modules.T.index.str.startswith('SunPower')]
>>> sunpower_modules[sunpower_modules.index.str.contains('A400')]
# Manufacturer Technology Bifacial STC ... gamma_r BIPV Version Date
# SunPower_SPR_A400 SunPower Mono-c-Si 0 399.96 ... -0.311 N SAM 2020.2.29 r3 11/25/2020
# SunPower_SPR_A400_COM SunPower Mono-c-Si 0 437.33 ... -0.329 N SAM 2020.2.29 r3 11/25/2020
# SunPower_SPR_A400_G_AC SunPower Mono-c-Si 0 399.96 ... -0.311 N SAM 2020.2.29 r3 11/25/2020
# SunPower_SPR_A400_MLSD SunPower Mono-c-Si 0 399.96 ... -0.311 N SAM 2020.2.29 r3 11/25/2020
[4 rows x 26 columns] |
Beta Was this translation helpful? Give feedback.
-
I am trying to load the module info for two specific modules using pvlib.pvsystem.retrieve_sam(). The function loads the lists from SAM.
Unfortunately, these two modules are not available in these lists, so I am trying to identify the most similar ones.
I am looking for these:
What are recommendations for picking the closest modules to the ones available in the list?
Or, is it recommended to create a PR to the SAM-list and adding the modules I am looking for?
Beta Was this translation helpful? Give feedback.
All reactions