@@ -656,11 +656,12 @@ def first_solar_spectral_loss(self, pw, airmass_absolute):
656656 calculate the spectral loss modifier. The model coefficients are
657657 specific to the module's cell type, and are determined by searching
658658 for one of the following keys in self.module_parameters (in order):
659- 'first_solar_spectral_coefficients' (user-supplied coefficients)
660- 'Technology' - a string describing the cell type, can be read from
661- the CEC module parameter database
662- 'Material' - a string describing the cell type, can be read from
663- the Sandia module database.
659+
660+ - 'first_solar_spectral_coefficients' (user-supplied coefficients)
661+ - 'Technology' - a string describing the cell type, can be read from
662+ the CEC module parameter database
663+ - 'Material' - a string describing the cell type, can be read from
664+ the Sandia module database.
664665
665666 Parameters
666667 ----------
@@ -741,12 +742,6 @@ def singlediode(self, photocurrent, saturation_current,
741742 ivcurve_pnts = None ):
742743 """Wrapper around the :py:func:`pvlib.pvsystem.singlediode` function.
743744
744- Parameters
745- ----------
746- See :py:func:`pvsystem.singlediode` for details
747-
748- Returns
749- -------
750745 See :py:func:`pvsystem.singlediode` for details
751746 """
752747 return singlediode (photocurrent , saturation_current ,
@@ -757,12 +752,6 @@ def i_from_v(self, resistance_shunt, resistance_series, nNsVth, voltage,
757752 saturation_current , photocurrent ):
758753 """Wrapper around the :py:func:`pvlib.pvsystem.i_from_v` function.
759754
760- Parameters
761- ----------
762- See :py:func:`pvsystem.i_from_v` for details
763-
764- Returns
765- -------
766755 See :py:func:`pvsystem.i_from_v` for details
767756 """
768757 return i_from_v (resistance_shunt , resistance_series , nNsVth , voltage ,
@@ -773,12 +762,6 @@ def snlinverter(self, v_dc, p_dc):
773762 """Uses :py:func:`pvlib.inverter.sandia` to calculate AC power based on
774763 ``self.inverter_parameters`` and the input voltage and power.
775764
776- Parameters
777- ----------
778- See :py:func:`pvlib.inverter.sandia` for details
779-
780- Returns
781- -------
782765 See :py:func:`pvlib.inverter.sandia` for details
783766 """
784767 return inverter .sandia (v_dc , p_dc , self .inverter_parameters )
@@ -787,12 +770,6 @@ def adrinverter(self, v_dc, p_dc):
787770 """Uses :py:func:`pvlib.inverter.adr` to calculate AC power based on
788771 ``self.inverter_parameters`` and the input voltage and power.
789772
790- Parameters
791- ----------
792- See :py:func:`pvlib.inverter.adr` for details
793-
794- Returns
795- -------
796773 See :py:func:`pvlib.inverter.adr` for details
797774 """
798775 return inverter .adr (v_dc , p_dc , self .inverter_parameters )
0 commit comments