8000 Deprecate/raise error for PVSystem "pass-through" properties by kandersolar · Pull Request #1196 · pvlib/pvlib-python · GitHub
[go: up one dir, main page]

Skip to content

Deprecate/raise error for PVSystem "pass-through" properties #1196

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 16 commits into from
May 20, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
another pvsystem.rst edit
  • Loading branch information
kandersolar committed May 19, 2021
commit 53ea45d11e6bf15cca918eb07591cd25259464df
2 changes: 1 addition & 1 deletion docs/sphinx/source/pvsystem.rst
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ for each array using the attributes `Array.surface_tilt` and `Array.surface_azim
array_two = pvsystem.Array(surface_tilt=30, surface_azimuth=220)
system = pvsystem.PVSystem(arrays=[array_one, array_two])
system.num_arrays
[array.surface_tilt, array.surface_azimuth for array in system.arrays]
[(array.surface_tilt, array.surface_azimuth) for array in system.arrays]


The `surface_tilt` and `surface_azimuth` attributes are used in PVSystem
Expand Down
0