Azimuth and tilt #1326
Answered
by
kandersolar
ThomasGeffroyCatie
asked this question in
Q&A
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 |
Answered by
kandersolar
Oct 15, 2021
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
) |
5 replies
Answer selected by
cwhanse
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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: