@@ -3046,7 +3046,8 @@ def nonuniform_irradiance_deline_power_loss(
3046
3046
irradiance is less uniform due to mounting and site conditions.
3047
3047
3048
3048
Depending on the mounting type, the power loss is estimated with either
3049
- equation (11) or (12) of [1]_. Passing a custom polynomial is also valid.
3049
+ equation :eq:`11` or :eq:`12` of [1]_. Passing a custom polynomial is also
3050
+ possible.
3050
3051
3051
3052
Use ``fillfactor_ratio`` to account for different fill factors between the
3052
3053
trained model and the module of interest. The fill factor used for
@@ -3067,8 +3068,8 @@ def nonuniform_irradiance_deline_power_loss(
3067
3068
The model coefficients to use.
3068
3069
If a string, it must be one of the following:
3069
3070
3070
- * ``"fixed-tilt"``: Eq. (11) of [1]_.
3071
- * ``"single-axis-tracking"``: Eq. (12) of [1]_.
3071
+ * ``"fixed-tilt"``: Eq. :eq:`11` of [1]_.
3072
+ * ``"single-axis-tracking"``: Eq. :eq:`12` of [1]_.
3072
3073
3073
3074
If a :py:`numpy:numpy.polynomial.Polynomial`, it is evaluated as is.
3074
3075
@@ -3090,20 +3091,24 @@ def nonuniform_irradiance_deline_power_loss(
3090
3091
3091
3092
Notes
3092
3093
-----
3093
- The models implemented are equations (11) and (12) of [1]_:
3094
+ The models implemented are equations :eq:`11` and :eq:`12` of [1]_:
3094
3095
3095
3096
.. math::
3097
+ :eq: 11
3096
3098
3097
3099
\text{model="fixed-tilt"} & \Rightarrow M[\%] =
3098
- 0.142 \Delta[\%] + 0.032 \Delta[\%]^2 \qquad & \text{(11)}
3100
+ 0.142 \Delta[\%] + 0.032 \Delta[\%]^2
3101
+
3102
+ .. math::
3103
+ :eq: 12
3099
3104
3100
3105
\text{model="single-axis-tracking"} & \Rightarrow M[\%] =
3101
- 0.054 \Delta[\%] + 0.068 \Delta[\%]^2 \qquad & \text{(12)}
3106
+ 0.054 \Delta[\%] + 0.068 \Delta[\%]^2
3102
3107
3103
3108
where :math:`\Delta[\%]` is the Relative Mean Absolute Difference of the
3104
3109
global irradiance, Eq. (4) of [1]_ and [2]_.
3105
3110
3106
- The losses definition is Eq. (1) of [1]_, and it's defined as a loss of the
3111
+ The losses definition is Eq. :eq:`1` of [1]_, and it's defined as a loss of the
3107
3112
output power:
3108
3113
3109
3114
.. math::
@@ -3120,13 +3125,12 @@ def nonuniform_irradiance_deline_power_loss(
3120
3125
3121
3126
See Also
3122
3127
--------
3128
+ pvlib.pvsystem.combine_loss_factors
3123
3129
`solarfactors <https://github.com/pvlib/solarfactors/>`_
3124
3130
Calculate the irradiance at different points of the module.
3125
3131
`bifacial_radiance <https://github.com/NREL/bifacial_radiance>`_
3126
3132
Calculate the irradiance at different points of the module.
3127
3133
3128
- pvlib.pvsystem.combine_loss_factors
3129
-
3130
3134
References
3131
3135
----------
3132
3136
.. [1] C. Deline, S. Ayala Pelaez, S. MacAlpine, and C. Olalla, 'Estimating
0 commit comments