NREL / PVDegradationTools

Set of tools to calculate degradation responses and degradation related parameters for PV.
https://pvdegradationtools.readthedocs.io/
Other
24 stars 5 forks source link

Program temperature.py for other temperature models #47

Closed MDKempe closed 3 months ago

MDKempe commented 7 months ago

Currently the temperature.py method will only run the sapm model. It should be able to run all of them.

martin-springer commented 6 months ago

Temperature models: https://pvlib-python.readthedocs.io/en/stable/reference/pv_modeling/temperature.html

martin-springer commented 6 months ago

temperature models we want to include: if temp_model == "sapm":

tobin-ford commented 3 months ago

Added a unified temperature function with pvlib temperature models. Live on dev_geospatial_scenario, complexity is a little higher than other pvlib functions to allow for its use during scenario analysis but this should be abstracted with its implementation into the scenario job pipeline.

tobin-ford commented 3 months ago

All temperature.cell function calls I could find across pvdeg have been replaced with the new temperature function and docstrings updated. New functions in the package should utilize temperature.temperature rather than temperature.cell or temperature.mod to ensure compatibility with scenario analysis.