@@ -138,3 +138,37 @@ so you can check the tables there for more up-to-date tables.
138
138
For modules, if even the SAM files don't include the module you're looking for
139
139
either, you can calculate CEC module model parameters from
140
140
datasheet information using :py:func: `pvlib.ivtools.sdm.fit_cec_sam `.
141
+
142
+
143
+ Which should I use, the CEC or the Sandia PV Module database?
144
+ -------------------------------------------------------------
145
+
146
+ The CEC PV module database contains parameters for significantly more
147
+ modules, and is more up to date, than the Sandia PV module database.
148
+ Therefore, the CEC PV module database is probably the more useful option
149
+ in most cases. However, finding parameters for the specific module
150
+ being used is usually more important than which database they came from.
151
+
152
+ Besides which modules each database includes, another consideration is the
153
+ different modeling capabilities each parameter set provides. The CEC model
154
+ produces a continuous IV curve while the Sandia model calculates only a few
155
+ specific points of interest on the curve. For typical simulations where
156
+ only the maximum power point is of interest, either model will suffice.
157
+
158
+
159
+ How do I model a system with multiple inverters?
160
+ ------------------------------------------------
161
+
162
+ Currently, pvlib's :ref: `modelchaindoc ` and :ref: `pvsystemdoc ` only support
163
+ simulating one inverter at a time. To calculate total power for multiple inverters,
164
+ there are two options:
165
+
166
+ If the modules, mounting, stringing, and inverters are all identical for each
167
+ inverter, then you may simply simulate one inverter and multiply the
168
+ ``ModelChainResult.ac `` by the number of inverters to get the total system output.
169
+
170
+ If the inverters or their arrays are not all identical,
171
+ define one ``PVSystem `` and ``ModelChain `` per inverter and
172
+ run the simulation for each of them individually. From there you
173
+ can add up the inverter-level outputs to get the total system output.
174
+
0 commit comments