@@ -469,8 +469,7 @@ def sapm_aoi_loss(self, aoi):
469
469
return sapm_aoi_loss (aoi , self .module_parameters )
470
470
471
471
def sapm_effective_irradiance (self , poa_direct , poa_diffuse ,
472
- airmass_absolute , aoi ,
473
- reference_irradiance = 1000 ):
472
+ airmass_absolute , aoi ):
474
473
"""
475
474
Use the :py:func:`sapm_effective_irradiance` function, the input
476
475
parameters, and ``self.module_parameters`` to calculate
@@ -490,17 +489,14 @@ def sapm_effective_irradiance(self, poa_direct, poa_diffuse,
490
489
aoi : numeric
491
490
Angle of incidence in degrees.
492
491
493
- reference_irradiance : numeric, default 1000
494
- Reference irradiance by which to divide the input irradiance.
495
-
496
492
Returns
497
493
-------
498
494
effective_irradiance : numeric
499
495
The SAPM effective irradiance in W/m^2.
500
496
"""
501
497
return sapm_effective_irradiance (
502
498
poa_direct , poa_diffuse , airmass_absolute , aoi ,
503
- self .module_parameters , reference_irradiance = reference_irradiance )
499
+ self .module_parameters )
504
500
505
501
def first_solar_spectral_loss (self , pw , airmass_absolute ):
506
502
0 commit comments