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_tilt
andsurface_azimuth
should not be specified inside ofmodule_parameters
but instead as separate inputs toPVSystem
(see docs).module_parameters
lists 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_parameters
like this I think you'll get the intended results: