@@ -424,7 +424,7 @@ def batzelis(effective_irradiance, temp_cell,
424424 alpha_sc : float
425425 Short-circuit current temperature coefficient at STC. [1/K]
426426 beta_voc : float
427- Open-circuit voltage temperature coefficient at STC. [1/K]
427+ Open-circuit voltage temperature coefficient at STC. [1/K]
428428
429429 Returns
430430 -------
@@ -455,7 +455,7 @@ def batzelis(effective_irradiance, temp_cell,
455455 References
456456 ----------
457457 .. [1] E. I. Batzelis, "Simple PV Performance Equations Theoretically Well
458- Founded on the Single-Diode Model," Journal of Photovoltaics vol. 7,
458+ Founded on the Single-Diode Model," Journal of Photovoltaics vol. 7,
459459 no. 5, pp. 1400-1409, Sep 2017, :doi:`10.1109/JPHOTOV.2017.2711431`
460460
461461 Examples
@@ -477,7 +477,7 @@ def batzelis(effective_irradiance, temp_cell,
477477 # for zero/negative irradiance, use lnG=large negative number so that
478478 # computed voltages are negative and then clipped to zero
479479 with np .errstate (divide = 'ignore' ): # needed for pandas for some reason
480- lnG = np .log (g , out = np .full_like (g , - 9e9 ), where = g > 0 )
480+ lnG = np .log (g , out = np .full_like (g , - 9e9 ), where = ( g > 0 ) )
481481 lnG = np .where (np .isfinite (g ), lnG , np .nan ) # also preserve nans
482482
483483 # Eq 9-10
0 commit comments