You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The return_outputs() methods of SimpleSolar and SolarPySAM both (correctly) return dictionaries, but they aren't consistent, which means that the two solar modules can't be exchanged directly. Currently, the return dictionary from SolarPySAM has keys "power_mw", "dni", and "aoi", whereas the SimpleSolar return dictionary contains "power" and "irradiance".
We should make these consistent (even if they hold null values in the SimpleSolar case) so that the modules can be readily interchanged.
The text was updated successfully, but these errors were encountered:
The
return_outputs()
methods ofSimpleSolar
andSolarPySAM
both (correctly) return dictionaries, but they aren't consistent, which means that the two solar modules can't be exchanged directly. Currently, the return dictionary fromSolarPySAM
has keys"power_mw"
,"dni"
, and"aoi"
, whereas theSimpleSolar
return dictionary contains"power"
and"irradiance"
.We should make these consistent (even if they hold null values in the
SimpleSolar
case) so that the modules can be readily interchanged.The text was updated successfully, but these errors were encountered: