Skip to content

Commit 6d029aa

Browse files
committed
remove Ztemp
1 parent 14d9a0f commit 6d029aa

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

pvlib/clearsky.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ def disc(GHI, zenith, times, pressure=101325):
303303
True (not refraction - corrected) solar zenith
304304
angles in decimal degrees.
305305
306-
times : Series or DatetimeIndex
306+
times : DatetimeIndex
307307
308308
pressure : float or Series
309309
Site pressure in Pascal.
@@ -317,7 +317,6 @@ def disc(GHI, zenith, times, pressure=101325):
317317
* ``Kt_gen_DISC``: Ratio of global to extraterrestrial
318318
irradiance on a horizontal plane.
319319
* ``AM``: Airmass
320-
* ``Ztemp``: Zenith
321320
322321
References
323322
----------
@@ -384,9 +383,7 @@ def disc(GHI, zenith, times, pressure=101325):
384383
DNI[DNI < 0] = np.NaN
385384

386385
DFOut = pd.DataFrame({'DNI_gen_DISC':DNI})
387-
388386
DFOut['Kt_gen_DISC'] = Kt
389387
DFOut['AM'] = AM
390-
DFOut['Ztemp'] = Ztemp
391388

392389
return DFOut

0 commit comments

Comments
 (0)