Azimuth and tilt #1326
-
|
Hi, I try using azimuth and surface tilt parameters for better estimates, without success. Is it spectral_model that need to be set to something different ? Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
|
Howdy @ThomasGeffroyCatie, system = pvsystem.PVSystem(
surface_tilt=7,
surface_azimuth=180,
module_parameters={
'pdc0': 975,
'gamma_pdc': -0.0045,
},
inverter_parameters={
'pdc0': 1000,
},
temperature_model_parameters=temperature_model_parameters
) |
Beta Was this translation helpful? Give feedback.
Howdy @ThomasGeffroyCatie,
surface_tiltandsurface_azimuthshould not be specified inside ofmodule_parametersbut instead as separate inputs toPVSystem(see docs).module_parameterslists intrinsic module properties needed to model output power from effective irradiance and cell temperature whereas tilt and azimuth are "external" properties of the broader system. So if you move those inputs out ofmodule_parameterslike this I think you'll get the intended results: