Skip to content

Commit 8e35312

Browse files
committed
change order of optional parameters
1 parent a143fa5 commit 8e35312

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pvlib/ivtools/sdm/pvsyst.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ def fit_pvsyst_iec61853_sandia(effective_irradiance, temp_cell,
314314
i_sc, v_oc, i_mp, v_mp,
315315
cells_in_series, EgRef=1.121,
316316
alpha_sc=None, beta_mp=None,
317-
r_sh_coeff=0.12, R_s=None,
317+
R_s=None, r_sh_coeff=0.12,
318318
min_Rsh_irradiance=None,
319319
irradiance_tolerance=20,
320320
temperature_tolerance=1):
@@ -349,12 +349,12 @@ def fit_pvsyst_iec61853_sandia(effective_irradiance, temp_cell,
349349
Temperature coefficient of maximum power voltage. If not specified,
350350
it will be estimated using the ``v_mp`` values at irradiance of
351351
1000 W/m2. [1/K]
352-
r_sh_coeff : float, default 0.12
353-
Shunt resistance fitting coefficient. The default value is taken
354-
from [1]_.
355352
R_s : float, optional
356353
Series resistance value. If not provided, a value will be estimated
357354
from the input measurements. [ohm]
355+
r_sh_coeff : float, default 0.12
356+
Shunt resistance fitting coefficient. The default value is taken
357+
from [1]_.
358358
min_Rsh_irradiance : float, optional
359359
Irradiance threshold below which values are excluded when estimating
360360
shunt resistance parameter values. May be useful for modules

0 commit comments

Comments
 (0)