SunPower / PVMismatch

An explicit Python PV system IV & PV curve trace calculator which can also calculate mismatch.
http://sunpower.github.io/PVMismatch/
BSD 3-Clause "New" or "Revised" License
79 stars 30 forks source link

cell pattern interpretation for total cross ties #120

Closed a-karanth closed 4 years ago

a-karanth commented 4 years ago

I am trying to build a 16-cell module with a total cross tie connection in a 4x4 layout, such that there is a bypass diode across two rows. The desired layout is shown in Figure 1. In this definition, each block represents a cell, and 8 cells together form a substring in the module. Figure1

I have defined my module as: nrows_per_substrs = [2]*2 # for TCT ncols = 4 pv_mod_pattern = pvmodule.crosstied_cellpos_pat(nrows_per_substrs=nrows_per_substrs, ncols=ncols, partial = False)

Figure 2 is the cellpos_pat array obtained using the above definition. Based on it, is it correct to assume that the cells are connected as shown in figure 3? Additionally, in the explanation in the issue 113 (https://github.com/SunPower/PVMismatch/issues/113), it is mentioned that "crosstie" refers to the node before the indexed cell to the next column of the module. Does that mean that in my particular case, the last column of the first substring is in parallel with the first column of the second substring?

Figure2 Figure3

mikofski commented 4 years ago

Yes