pvlib.irradiance.disc#
- pvlib.irradiance.disc(ghi, solar_zenith, datetime_or_doy, pressure=101325, min_cos_zenith=0.065, max_zenith=87, max_airmass=12)[source]#
- Estimate Direct Normal Irradiance from Global Horizontal Irradiance using the DISC model. - The DISC algorithm converts global horizontal irradiance to direct normal irradiance through empirical relationships between the global and direct clearness indices. - The pvlib implementation limits the clearness index to 1. - The original report describing the DISC model [1] uses the relative airmass rather than the absolute (pressure-corrected) airmass. However, the NREL implementation of the DISC model [2] uses absolute airmass. PVLib Matlab also uses the absolute airmass. pvlib python defaults to absolute airmass, but the relative airmass can be used by supplying pressure=None. - Parameters:
- ghi (numeric) – Global horizontal irradiance. See ghi. [Wm⁻²] 
- solar_zenith (numeric) – True (not refraction-corrected) solar zenith angles. See solar_zenith. [°] 
- datetime_or_doy (int, float, array, pd.DatetimeIndex) – Day of year or array of days of year e.g. pd.DatetimeIndex.dayofyear, or pd.DatetimeIndex. 
- pressure (numeric or None, default 101325) – Site pressure. See pressure. [Pa] 
- min_cos_zenith (numeric, default 0.065) – Minimum value of cos(zenith) to allow when calculating global clearness index \(k_t\). Equivalent to zenith = 86.273°. 
- max_zenith (numeric, default 87) – Maximum value of zenith to allow in DNI calculation. DNI will be set to 0 for times with zenith values greater than max_zenith. [°] 
- max_airmass (numeric, default 12) – Maximum value of the airmass to allow in Kn calculation. Default value (12) comes from range over which Kn was fit to airmass in the original paper. [unitless] 
 
- Returns:
- output (OrderedDict or DataFrame) – Contains the following keys: - dni: The modeled direct normal irradiance provided by the Direct Insolation Simulation Code (DISC) model. [Wm⁻²]
- kt: Ratio of global to extraterrestrial irradiance on a horizontal plane. [unitless]
- airmass: Airmass. [unitless]
 
 - References - See also 
 
    
  
  
