-
Notifications
You must be signed in to change notification settings - Fork 34
Description
AFAIK there isn't a canonically accepted method to model half-cell modules in PVMismatch. I think it's possible to model a half cell by creating a total cross-tied module with 3 subblocks and 2 substrings of cells each, but it would require some mental accounting to determine the actual location of each cell when applying irradiance and temperature. Since PVmismatch always organizes cells into modules into strings into a system, the approach of putting two half-modules in parallel, then in series with more full-size modules wouldn't work
I propose a new cell_pattern template for half-cell modules, that is similar to the existing standard module. It would make the following assumptions:
- the cells are always cut in half
- the template is called a
half_cell_module - the strings will always start in the center, one going up, the other down
- there will be bypass diodes in the middle, which use the existing bypass diode conventions, eg:
[2,2,2]means bypass diode every two columns the cells will be numbered 0 toNs(Ns=78in the image below) in atopgroup and abottomgroup, sotop[0]is the first cell on the positive (left) side, at the bottom of the top module,top[12]would be top-left,bottom[0]is right next totop[0]andbottom[12]would be bottom left, etc.Np = 2always- the existing cross-tie calculation chain would be used, it's just the mental accounting of where the actual cells are that the new template takes care of
setSuns()andsetTemps()for half-cell modules would have to specify thetopor thebottomas a new key in the cell position list, eg:setSuns({'cells': {'top': [0, 1, 24, 25], 'bottom': [0, 25]}, 'Ee': 817.1}if specifying irradiance for each cell individually, then usetopandbottomto specifyEe, eg:setSuns({'cells': {'top': [0, 1, 24, 25], 'bottom': [0, 25]}, 'Ee': {'top': 817.1, 'bottom': [813.1, 789.9]}
A half-cell module looks like this:

UPDATE 2020-06-01
I don't know why I was making this so complicated. So see the comment below, we can make these using partially cross-tied modules, then we just need to fix the indices so that they conform to the Cartesian coordinate system where the 0th cell is in the upper left corner, then each column of cells is numbered from top to bottom, top to bottom, until the last column with the last cell in the lower right corner. Also we'd need to make sure that the bypass diodes are working correctly.