While using fit_desoto https://pvlib-python.readthedocs.io/en/stable/generated/pvlib.ivtools.sdm.fit_desoto.html
Vals=fit_sdm_desoto(v_mp, i_mp, v_oc, i_sc, alpha_sc,beta_voc,
cells_in_series, EgRef=1.121, dEgdT=-0.0002677,
temp_ref=25, irrad_ref=1000)
we typically enter the datasheet values.
However, here, only cells_in_series is an input, many other types of panels, have 60 cells in series with 2 in parallel, bringing the total to 120 cells (eg this one)
What is the correct way then to enter the information? Should we be adjusting the i_mp, i_sc etc or treating the models differently or entering 120 rather than 60. Based on the above datasheeet i would have entered
i_sc, v_oc, i_mp, v_mp, alpha_sc, beta_voc, cells_in_series, gamma_pmp
12.14,40.8, 11.54, 33.8, 0.004856, -0.102, 60, -0.34
What is the correct way to deal with cells in parallel?