Skip to content
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

Add FAQ entries for CEC vs Sandia module dbs and multi-inverter systems #1662

Merged
merged 4 commits into from
Feb 17, 2023
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
21 changes: 21 additions & 0 deletions docs/sphinx/source/user_guide/faq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -138,3 +138,24 @@ so you can check the tables there for more up-to-date tables.
For modules, if even the SAM files don't include the module you're looking for
either, you can calculate CEC module model parameters from
datasheet information using :py:func:`pvlib.ivtools.sdm.fit_cec_sam`.


Which should I use, the CEC or the Sandia PV Module database?
-------------------------------------------------------------

The CEC PV module database contains parameters for significantly more
modules, and is more up to date, than the Sandia PV module database.
Therefore, the CEC PV module database is probably the more useful option
in most cases. However, finding parameters for the specific module
being used is more important than which database they came from.
kandersolar marked this conversation as resolved.
Show resolved Hide resolved


How do I model a system with multiple inverters?
------------------------------------------------

Currently, pvlib's :ref:`modelchaindoc` and :ref:`pvsystemdoc` only support
simulating one inverter at a time. To simulate a system with multiple
inverters, define one ``PVSystem`` and ``ModelChain`` per inverter and
run the simulation for each of them individually. From there you
can add up the inverter-level outputs to get the total system output.
kandersolar marked this conversation as resolved.
Show resolved Hide resolved