10000 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
more docstring updates
  • Loading branch information
kandersolar committed May 12, 2021
commit 1824bd60fd7334513e0496c66e6d36c564a1677f
22 changes: 12 additions & 10 deletions pvlib/modelchain.py
Original file line number Diff line number Diff line change
Expand Up @@ -334,23 +334,25 @@ class ModelChain:
to a user-defined function.

ac_model: None, str, or function, default None
If None, the model will be inferred from the contents of
system.inverter_parameters and system.arrays[i].module_parameters.
If None, the model will be inferred from the parameters that
are common to all of system.inverter_parameters.
Valid strings are 'sandia', 'adr', 'pvwatts'. The
ModelChain instance will be passed as the first argument to a
user-defined function.

aoi_model: None, str, or function, default None
If None, the model will be inferred from the contents of
system.arrays[i].module_parameters. Valid strings are 'physical',
'ashrae', 'sapm', 'martin_ruiz', 'no_loss'. The ModelChain instance
will be passed as the first argument to a user-defined function.
If None, the model will be inferred from the parameters that
are common to all of system.arrays[i].module_parameters.
Valid strings are 'physical', 'ashrae', 'sapm', 'martin_ruiz',
'no_loss'. The ModelChain instance will be passed as the
first argument to a user-defined function.

spectral_model: None, str, or function, default None
If None, the model will be inferred from the contents of
system.arrays[i].module_parameters. Valid strings are 'sapm',
'first_solar', 'no_loss'. The ModelChain instance will be passed
as the first argument to a user-defined function.
If None, the model will be inferred from the parameters that
are common to all of system.arrays[i].module_parameters.
Valid strings are 'sapm', 'first_solar', 'no_loss'.
The ModelChain instance will be passed as the first argument to
a user-defined function.

temperature_model: None, str or function, default None
Valid strings are 'sapm', 'pvsyst', 'faiman', and 'fuentes'.
Expand Down
0