Skip to content

Azimuth and tilt #1326

Oct 15, 2021 · 1 comments · 5 replies
Discussion options

You must be logged in to vote

Howdy @ThomasGeffroyCatie, surface_tilt and surface_azimuth should not be specified inside of module_parameters but instead as separate inputs to PVSystem (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 of module_parameters like this I think you'll get the intended results:

    system = pvsystem.PVSystem(
        surface_tilt=7,
        surface_azimuth=180,
        module_parameters={
            'pdc0': 975,
            'gamma_pdc': -0.0045,
        },
        inverter_parameters={
            '…

Replies: 1 comment 5 replies

Comment options

You must be logged in to vote
5 replies
@ThomasGeffroyCatie
Comment options

@cwhanse
Comment options

@ThomasGeffroyCatie
Comment options

@cwhanse
Comment options

@ThomasGeffroyCatie
Comment options

Answer selected by cwhanse
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants