pvlib 0.12.0__py3-none-any.whl → 0.12.1a1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
pvlib/pvsystem.py CHANGED
@@ -17,8 +17,6 @@ from dataclasses import dataclass
17
17
  from abc import ABC, abstractmethod
18
18
  from typing import Optional, Union
19
19
 
20
- from pvlib._deprecation import deprecated
21
-
22
20
  import pvlib # used to avoid albedo name collision in the Array class
23
21
  from pvlib import (atmosphere, iam, inverter, irradiance,
24
22
  singlediode as _singlediode, spectrum, temperature)
@@ -29,10 +27,10 @@ import pvlib.tools as tools
29
27
  # a dict of required parameter names for each DC power model
30
28
  _DC_MODEL_PARAMS = {
31
29
  'sapm': {
32
- 'C0', 'C1', 'C2', 'C3', 'C4', 'C5', 'C6', 'C7',
30
+ # i_x and i_xx params (IXO, IXXO, C4-C7) not required
31
+ 'C0', 'C1', 'C2', 'C3',
33
32
  'Isco', 'Impo', 'Voco', 'Vmpo', 'Aisc', 'Aimp', 'Bvoco',
34
- 'Mbvoc', 'Bvmpo', 'Mbvmp', 'N', 'Cells_in_Series',
35
- 'IXO', 'IXXO'},
33
+ 'Mbvoc', 'Bvmpo', 'Mbvmp', 'N', 'Cells_in_Series'},
36
34
  'desoto': {
37
35
  'alpha_sc', 'a_ref', 'I_L_ref', 'I_o_ref',
38
36
  'R_sh_ref', 'R_s'},
@@ -1948,31 +1946,17 @@ def calcparams_pvsyst(effective_irradiance, temp_cell,
1948
1946
 
1949
1947
  '''
1950
1948
 
1951
- # Boltzmann constant in J/K
1952
- k = constants.k
1949
+ gamma = _pvsyst_gamma(temp_cell, gamma_ref, mu_gamma, temp_ref)
1953
1950
 
1954
- # elementary charge in coulomb
1955
- q = constants.e
1951
+ nNsVth = _pvsyst_nNsVth(temp_cell, gamma, cells_in_series)
1956
1952
 
1957
- # reference temperature
1958
- Tref_K = temp_ref + 273.15
1959
- Tcell_K = temp_cell + 273.15
1953
+ IL = _pvsyst_IL(effective_irradiance, temp_cell, I_L_ref, alpha_sc,
1954
+ irrad_ref, temp_ref)
1960
1955
 
1961
- gamma = gamma_ref + mu_gamma * (Tcell_K - Tref_K)
1962
- nNsVth = gamma * k / q * cells_in_series * Tcell_K
1963
-
1964
- IL = effective_irradiance / irrad_ref * \
1965
- (I_L_ref + alpha_sc * (Tcell_K - Tref_K))
1966
-
1967
- I0 = I_o_ref * ((Tcell_K / Tref_K) ** 3) * \
1968
- (np.exp((q * EgRef) / (k * gamma) * (1 / Tref_K - 1 / Tcell_K)))
1969
-
1970
- Rsh_tmp = \
1971
- (R_sh_ref - R_sh_0 * np.exp(-R_sh_exp)) / (1.0 - np.exp(-R_sh_exp))
1972
- Rsh_base = np.maximum(0.0, Rsh_tmp)
1956
+ I0 = _pvsyst_Io(temp_cell, gamma, I_o_ref, EgRef, temp_ref)
1973
1957
 
1974
- Rsh = Rsh_base + (R_sh_0 - Rsh_base) * \
1975
- np.exp(-R_sh_exp * effective_irradiance / irrad_ref)
1958
+ Rsh = _pvsyst_Rsh(effective_irradiance, R_sh_ref, R_sh_0, R_sh_exp,
1959
+ irrad_ref)
1976
1960
 
1977
1961
  Rs = R_s
1978
1962
 
@@ -1992,6 +1976,54 @@ def calcparams_pvsyst(effective_irradiance, temp_cell,
1992
1976
  return tuple(pd.Series(a, index=index).rename(None) for a in out)
1993
1977
 
1994
1978
 
1979
+ def _pvsyst_Rsh(effective_irradiance, R_sh_ref, R_sh_0, R_sh_exp=5.5,
1980
+ irrad_ref=1000):
1981
+ Rsh_tmp = \
1982
+ (R_sh_ref - R_sh_0 * np.exp(-R_sh_exp)) / (1.0 - np.exp(-R_sh_exp))
1983
+ Rsh_base = np.maximum(0.0, Rsh_tmp)
1984
+
1985
+ Rsh = Rsh_base + (R_sh_0 - Rsh_base) * \
1986
+ np.exp(-R_sh_exp * effective_irradiance / irrad_ref)
1987
+
1988
+ return Rsh
1989
+
1990
+
1991
+ def _pvsyst_IL(effective_irradiance, temp_cell, I_L_ref, alpha_sc,
1992
+ irrad_ref=1000, temp_ref=25):
1993
+ Tref_K = temp_ref + 273.15
1994
+ Tcell_K = temp_cell + 273.15
1995
+ IL = effective_irradiance / irrad_ref * \
1996
+ (I_L_ref + alpha_sc * (Tcell_K - Tref_K))
1997
+ return IL
1998
+
1999
+
2000
+ def _pvsyst_Io(temp_cell, gamma, I_o_ref, EgRef, temp_ref=25):
2001
+ k = constants.k # Boltzmann constant in J/K
2002
+ q = constants.e # elementary charge in coulomb
2003
+
2004
+ Tref_K = temp_ref + 273.15
2005
+ Tcell_K = temp_cell + 273.15
2006
+
2007
+ Io = I_o_ref * ((Tcell_K / Tref_K) ** 3) * \
2008
+ (np.exp((q * EgRef) / (k * gamma) * (1 / Tref_K - 1 / Tcell_K)))
2009
+
2010
+ return Io
2011
+
2012
+
2013
+ def _pvsyst_gamma(temp_cell, gamma_ref, mu_gamma, temp_ref=25):
2014
+ gamma = gamma_ref + mu_gamma * (temp_cell - temp_ref)
2015
+ return gamma
2016
+
2017
+
2018
+ def _pvsyst_nNsVth(temp_cell, gamma, cells_in_series):
2019
+ k = constants.k # Boltzmann constant in J/K
2020
+ q = constants.e # elementary charge in coulomb
2021
+ Tcell_K = temp_cell + 273.15
2022
+
2023
+ nNsVth = gamma * k / q * cells_in_series * Tcell_K
2024
+ return nNsVth
2025
+
2026
+
1995
2027
  def retrieve_sam(name=None, path=None):
1996
2028
  """
1997
2029
  Retrieve latest module and inverter info from a file bundled with pvlib,
@@ -2161,25 +2193,32 @@ def _parse_raw_sam_df(csvdata):
2161
2193
  return df
2162
2194
 
2163
2195
 
2164
- def sapm(effective_irradiance, temp_cell, module):
2196
+ def sapm(effective_irradiance, temp_cell, module, *, temperature_ref=25,
2197
+ irradiance_ref=1000):
2165
2198
  '''
2166
2199
  The Sandia PV Array Performance Model (SAPM) generates 5 points on a
2167
2200
  PV module's I-V curve (Voc, Isc, Ix, Ixx, Vmp/Imp) according to
2168
- SAND2004-3535. Assumes a reference cell temperature of 25 C.
2201
+ SAND2004-3535. Assumes a reference cell temperature of 25°C.
2169
2202
 
2170
2203
  Parameters
2171
2204
  ----------
2172
2205
  effective_irradiance : numeric
2173
2206
  Irradiance reaching the module's cells, after reflections and
2174
- adjustment for spectrum. [W/m2]
2207
+ adjustment for spectrum. [Wm⁻²]
2175
2208
 
2176
2209
  temp_cell : numeric
2177
- Cell temperature [C].
2210
+ Cell temperature [°C].
2178
2211
 
2179
2212
  module : dict-like
2180
2213
  A dict or Series defining the SAPM parameters. See the notes section
2181
2214
  for more details.
2182
2215
 
2216
+ temperature_ref : numeric, optional
2217
+ Reference temperature [°C]
2218
+
2219
+ irradiance_ref : numeric, optional
2220
+ Reference irradiance [Wm⁻²]
2221
+
2183
2222
  Returns
2184
2223
  -------
2185
2224
  A DataFrame with the columns:
@@ -2190,18 +2229,33 @@ def sapm(effective_irradiance, temp_cell, module):
2190
2229
  * v_mp : Voltage at maximum-power point (V)
2191
2230
  * p_mp : Power at maximum-power point (W)
2192
2231
  * i_x : Current at module V = 0.5Voc, defines 4th point on I-V
2193
- curve for modeling curve shape
2232
+ curve for modeling curve shape. Omitted if ``IXO``, ``C4``, and
2233
+ ``C5`` parameters are not supplied.
2194
2234
  * i_xx : Current at module V = 0.5(Voc+Vmp), defines 5th point on
2195
- I-V curve for modeling curve shape
2235
+ I-V curve for modeling curve shape. Omitted if ``IXXO``, ``C6``,
2236
+ and ``C7`` parameters are not supplied.
2196
2237
 
2197
2238
  Notes
2198
2239
  -----
2199
- The SAPM parameters which are required in ``module`` are
2200
- listed in the following table.
2201
-
2202
2240
  The Sandia module database contains parameter values for a limited set
2203
2241
  of modules. The CEC module database does not contain these parameters.
2204
- Both databases can be accessed using :py:func:`retrieve_sam`.
2242
+ Both databases can be accessed using :py:func:`retrieve_sam`. The full list
2243
+ of SAPM parameters is presented in the table below. Those that are required
2244
+ in the ``module`` parameter to run this model are as follows:
2245
+
2246
+ * ``C0``, ``C1``, ``C2``, ``C3``
2247
+ * ``Isco``
2248
+ * ``Impo``
2249
+ * ``Voco``
2250
+ * ``Vmpo``
2251
+ * ``Aisc``
2252
+ * ``Aimp``
2253
+ * ``Bvoco``
2254
+ * ``Mbvoc``
2255
+ * ``Bvmpo``
2256
+ * ``Mbvmp``
2257
+ * ``N``
2258
+ * ``Cells_in_series``
2205
2259
 
2206
2260
  ================ ========================================================
2207
2261
  Key Description
@@ -2217,19 +2271,19 @@ def sapm(effective_irradiance, temp_cell, module):
2217
2271
  Voco Open circuit voltage at reference condition (amps)
2218
2272
  Vmpo Maximum power voltage at reference condition (amps)
2219
2273
  Aisc Short circuit current temperature coefficient at
2220
- reference condition (1/C)
2274
+ reference condition (1C)
2221
2275
  Aimp Maximum power current temperature coefficient at
2222
- reference condition (1/C)
2276
+ reference condition (1C)
2223
2277
  Bvoco Open circuit voltage temperature coefficient at
2224
- reference condition (V/C)
2278
+ reference condition (VC)
2225
2279
  Mbvoc Coefficient providing the irradiance dependence for the
2226
2280
  BetaVoc temperature coefficient at reference irradiance
2227
- (V/C)
2281
+ (VC)
2228
2282
  Bvmpo Maximum power voltage temperature coefficient at
2229
2283
  reference condition
2230
2284
  Mbvmp Coefficient providing the irradiance dependence for the
2231
2285
  BetaVmp temperature coefficient at reference irradiance
2232
- (V/C)
2286
+ (VC)
2233
2287
  N Empirically determined "diode factor" (dimensionless)
2234
2288
  Cells_in_Series Number of cells in series in a module's cell string(s)
2235
2289
  IXO Ix at reference conditions
@@ -2250,16 +2304,11 @@ def sapm(effective_irradiance, temp_cell, module):
2250
2304
  pvlib.temperature.sapm_module
2251
2305
  '''
2252
2306
 
2253
- # TODO: someday, change temp_ref and irrad_ref to reference_temperature and
2254
- # reference_irradiance and expose
2255
- temp_ref = 25
2256
- irrad_ref = 1000
2257
-
2258
2307
  q = constants.e # Elementary charge in units of coulombs
2259
2308
  kb = constants.k # Boltzmann's constant in units of J/K
2260
2309
 
2261
2310
  # avoid problem with integer input
2262
- Ee = np.array(effective_irradiance, dtype='float64') / irrad_ref
2311
+ Ee = np.array(effective_irradiance, dtype='float64') / irradiance_ref
2263
2312
 
2264
2313
  # set up masking for 0, positive, and nan inputs
2265
2314
  Ee_gt_0 = np.full_like(Ee, False, dtype='bool')
@@ -2282,31 +2331,34 @@ def sapm(effective_irradiance, temp_cell, module):
2282
2331
  out = OrderedDict()
2283
2332
 
2284
2333
  out['i_sc'] = (
2285
- module['Isco'] * Ee * (1 + module['Aisc']*(temp_cell - temp_ref)))
2334
+ module['Isco'] * Ee * (1 + module['Aisc']*(temp_cell -
2335
+ temperature_ref)))
2286
2336
 
2287
2337
  out['i_mp'] = (
2288
2338
  module['Impo'] * (module['C0']*Ee + module['C1']*(Ee**2)) *
2289
- (1 + module['Aimp']*(temp_cell - temp_ref)))
2339
+ (1 + module['Aimp']*(temp_cell - temperature_ref)))
2290
2340
 
2291
2341
  out['v_oc'] = np.maximum(0, (
2292
2342
  module['Voco'] + cells_in_series * delta * logEe +
2293
- Bvoco*(temp_cell - temp_ref)))
2343
+ Bvoco*(temp_cell - temperature_ref)))
2294
2344
 
2295
2345
  out['v_mp'] = np.maximum(0, (
2296
2346
  module['Vmpo'] +
2297
2347
  module['C2'] * cells_in_series * delta * logEe +
2298
2348
  module['C3'] * cells_in_series * ((delta * logEe) ** 2) +
2299
- Bvmpo*(temp_cell - temp_ref)))
2349
+ Bvmpo*(temp_cell - temperature_ref)))
2300
2350
 
2301
2351
  out['p_mp'] = out['i_mp'] * out['v_mp']
2302
2352
 
2303
- out['i_x'] = (
2304
- module['IXO'] * (module['C4']*Ee + module['C5']*(Ee**2)) *
2305
- (1 + module['Aisc']*(temp_cell - temp_ref)))
2353
+ if 'IXO' in module and 'C4' in module and 'C5' in module:
2354
+ out['i_x'] = (
2355
+ module['IXO'] * (module['C4']*Ee + module['C5']*(Ee**2)) *
2356
+ (1 + module['Aisc']*(temp_cell - temperature_ref)))
2306
2357
 
2307
- out['i_xx'] = (
2308
- module['IXXO'] * (module['C6']*Ee + module['C7']*(Ee**2)) *
2309
- (1 + module['Aimp']*(temp_cell - temp_ref)))
2358
+ if 'IXXO' in module and 'C6' in module and 'C7' in module:
2359
+ out['i_xx'] = (
2360
+ module['IXXO'] * (module['C6']*Ee + module['C7']*(Ee**2)) *
2361
+ (1 + module['Aimp']*(temp_cell - temperature_ref)))
2310
2362
 
2311
2363
  if isinstance(out['i_sc'], pd.Series):
2312
2364
  out = pd.DataFrame(out)
@@ -138,7 +138,8 @@ def average_photon_energy(spectra):
138
138
  ape : numeric or pandas.Series
139
139
  Average Photon Energy [eV].
140
140
  Note: returns ``np.nan`` in the case of all-zero spectral irradiance
141
- input.
141
+ input, or where one or more spectral irradiance values is
142
+ ``np.nan``.
142
143
 
143
144
  Notes
144
145
  -----
@@ -1,15 +1,14 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pvlib
3
- Version: 0.12.0
3
+ Version: 0.12.1a1
4
4
  Summary: A set of functions and classes for simulating the performance of photovoltaic energy systems.
5
5
  Home-page: https://github.com/pvlib/pvlib-python
6
6
  Author-email: pvlib python Developers <pvlib-admin@googlegroups.com>
7
- License: BSD-3-Clause
7
+ License-Expression: BSD-3-Clause
8
8
  Project-URL: Bug Tracker, https://github.com/pvlib/pvlib-python/issues
9
9
  Project-URL: Documentation, https://pvlib-python.readthedocs.io/
10
10
  Project-URL: Source Code, https://github.com/pvlib/pvlib-python
11
11
  Classifier: Development Status :: 4 - Beta
12
- Classifier: License :: OSI Approved :: BSD License
13
12
  Classifier: Operating System :: OS Independent
14
13
  Classifier: Intended Audience :: Science/Research
15
14
  Classifier: Programming Language :: Python
@@ -1,15 +1,15 @@
1
1
  pvlib/__init__.py,sha256=vdXAcBhLHHabZq1hdGnBEoo5cif6hLIS7mCJtgnWWUA,515
2
2
  pvlib/_deprecation.py,sha256=pBZkJGV1r3m6q6ymqbQcT__t_toUkDQgPYYCK_Yu1so,15794
3
3
  pvlib/albedo.py,sha256=MqrkDztnF6VWaM7W28AGGEgCyAK6X13bDvPk9YEaimU,6205
4
- pvlib/atmosphere.py,sha256=oNtCGLNHiHysrjbe7C1eGpF_4-yJmN1rhxuVjvlVOj8,26257
4
+ pvlib/atmosphere.py,sha256=zG6dXIrAdCvruXXHi7OthbcVqbXfSd6laib7JPkCztA,26854
5
5
  pvlib/clearsky.py,sha256=9ReN3IGJHlJv_3bnxWEQUVZkww-klafsqqE5A-jelBQ,38553
6
6
  pvlib/iam.py,sha256=zL0YzOaMA2Twbl0JJ0y5nxoxjmaOb9OQGH_Z1MVGcIw,44224
7
7
  pvlib/inverter.py,sha256=ZpSv3cjt-Qm_JundL_jkvhCUd3iGjmlKcnNJeJqA2Qw,19127
8
- pvlib/irradiance.py,sha256=He5JZfdvCwcyh1nF8wnJ98zB-TEL_D2gMGOQczP4NOA,147464
8
+ pvlib/irradiance.py,sha256=PTVInBAqcHeQzmJaxhIn8eQbCXjeRBlK1jo9S4FaXjs,147940
9
9
  pvlib/location.py,sha256=G31Iabv1KcYzMFr5sd0JhcJr9IpZx2rLv25h1K2XaAE,17509
10
- pvlib/modelchain.py,sha256=f0mI6cq0FkUOC5Wa_8T8kULhyipYIQp0sof_LL7h6a8,72788
10
+ pvlib/modelchain.py,sha256=G7FysXI-3hcedpFeFstL_PonWzkRwjl3wGZgPy6OL00,72788
11
11
  pvlib/pvarray.py,sha256=r60sGTxFNlPiFQndusCJmlEIPX0dv9_7ozKw8zxh7IM,12677
12
- pvlib/pvsystem.py,sha256=EkqgqTFEyMMUXUcDWpA_alxVp1Uw5ppCmYq0qYDTZeI,110108
12
+ pvlib/pvsystem.py,sha256=_TiDNphMQgauZImvXjpBAhEnDHwml43Rui0Zn83UggQ,111917
13
13
  pvlib/scaling.py,sha256=SsQEmM4f4O1wC7e0amEV4SgaRTBX8nG5IiSV9Xs0i5o,10983
14
14
  pvlib/shading.py,sha256=S1Av-oskqxQTyLKkmaVr854bve3StfbP_yF5isHF5zI,26172
15
15
  pvlib/singlediode.py,sha256=wcq7QE68CNy04gOHzP-vrdYfZh_QHJcIzkDZXSkZsWQ,35399
@@ -38,7 +38,7 @@ pvlib/data/sam-library-cec-inverters-2019-03-05.csv,sha256=wZIlLw1hIE31j7DflVFKK
38
38
  pvlib/data/sam-library-cec-modules-2019-03-05.csv,sha256=p8OxrT2rtUJTaGFcFjIvLjUYX8QWOAtHHE5I3VRbGSA,5446588
39
39
  pvlib/data/sam-library-sandia-modules-2015-6-30.csv,sha256=fhC-Oi0IaYVViKEjyDyDWDCIFfD52rU2gL7w2FBAhPM,195253
40
40
  pvlib/data/soiling_hsu_example_inputs.csv,sha256=Dkr0Sc5GA2s6I2hBSeAGIEI5J4KKBNgf-LTtzKS0qEE,319716
41
- pvlib/iotools/__init__.py,sha256=tVa9xjsWVMO5hC_-EEMzgXoz6XxKKCU5r6AnoBSpOW0,2219
41
+ pvlib/iotools/__init__.py,sha256=CqYpFa4q0xlQ-tTR_eqWybyzib5IiKdFb30WbZEulRo,2613
42
42
  pvlib/iotools/acis.py,sha256=nzuH3SZBhMNoSk0fBr35O4YADDah6D02Acyj5RNUYeI,18449
43
43
  pvlib/iotools/bsrn.py,sha256=Y_-_7qdxu047oiCQLO6idu42MMCvh3Im5uBPxCa-YwU,21837
44
44
  pvlib/iotools/crn.py,sha256=PLugc4RF_0LzesWHnyCOtx9KmqeECZH9kxcXgzgjGrQ,5336
@@ -46,6 +46,7 @@ pvlib/iotools/epw.py,sha256=U35VKQE-bsttZp3QUZ2AsEqZpMQDIPj4IrhsWGGFJsI,17263
46
46
  pvlib/iotools/midc.py,sha256=T2kskGsBzeHY-9HHc8096mbOaifKvFturCTcZq1pIzY,9568
47
47
  pvlib/iotools/panond.py,sha256=okK6zNh5r-H1gDPbZRmWEcYYaBmifPhp1ESR-P2YM9s,5262
48
48
  pvlib/iotools/psm3.py,sha256=vSK-9cMhaOeFNyqajYbu27jzRs9VQR2h3XY7jCPDMeo,14771
49
+ pvlib/iotools/psm4.py,sha256=sbM3P05-f6YrqXT-vvbsbdr8xd4om6jmrd-z1OXHelU,32060
49
50
  pvlib/iotools/pvgis.py,sha256=R2gms1LTR7KMAY5U-P1jE0bHm3eoBqpKnnZvPU_5n_g,31477
50
51
  pvlib/iotools/sodapro.py,sha256=Hw4kOUorJ3olSjB5FBlZjdNxIrkjWtDIHZd1IugVsBs,15629
51
52
  pvlib/iotools/solaranywhere.py,sha256=_kDetQ0R8rQgcfTZjeQArq9nmCtVa4upF_KGrcipovQ,12535
@@ -57,19 +58,23 @@ pvlib/iotools/surfrad.py,sha256=WFh2__FGlOwHg6RTxIkcMmdMucX0vbQfHEz9q_HLGjY,7349
57
58
  pvlib/iotools/tmy.py,sha256=zfkxn88qSKBR0GOHWxgrQ6r-BOC-ueoDfppjOS18VBI,26603
58
59
  pvlib/ivtools/__init__.py,sha256=bnUDPqkzCP96CaFFK3Gw4HNczJoHtO-cI9GBGAtZVGI,159
59
60
  pvlib/ivtools/sde.py,sha256=HL2oE70Ls7xccikyaUSi6SQKx3cWES5XoaMAGuMjPIw,17008
60
- pvlib/ivtools/sdm.py,sha256=Q5d-codgQNo_aPkmEHkEI9L5RDEshdiGQQrwjS80tWU,52105
61
61
  pvlib/ivtools/utils.py,sha256=xL88J-RuYLXFZyy1za8tvoWei0hcwWb_2ktXara2m_M,19423
62
+ pvlib/ivtools/sdm/__init__.py,sha256=P9akg2O7mFkAXoC8Kh2HcaZhbT96K4tTKnYr3b1dt2g,474
63
+ pvlib/ivtools/sdm/_fit_desoto_pvsyst_sandia.py,sha256=1lHhBK5dRl2R80F4ZGwmQsoghAthCLNU_ce_3dt3Vbc,22522
64
+ pvlib/ivtools/sdm/cec.py,sha256=StIQ92RPaU--pp_2QQjFa1SFl5JSntjbEL5GItiOlNU,3434
65
+ pvlib/ivtools/sdm/desoto.py,sha256=saB71F9sXBRAbWB--gHt-QFnAPRYrg_eDEkNK777x38,15107
66
+ pvlib/ivtools/sdm/pvsyst.py,sha256=ur2LVbm_6S941BHNMKOtA-y5OaaT8LfwIctztSO1FbE,23246
62
67
  pvlib/spa_c_files/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
63
68
  pvlib/spa_c_files/setup.py,sha256=RcMEf0R2wKHJjvpUH5y6h22m86y6UrdXwkPkHKNme48,1102
64
69
  pvlib/spa_c_files/spa_py_example.py,sha256=p3ms0mhLycAuZJyaE3Wageqnd_56zh2EKxXK-jlTJfg,1179
65
70
  pvlib/spectrum/__init__.py,sha256=8lK8ZJRh5nl4A6eK0OlbiHdViorCHiJkANrK7QkjQIw,516
66
- pvlib/spectrum/irradiance.py,sha256=GhTUpmtNc4gPeicVJV03psaqRmHTcogAda7KuvE7cLs,7756
71
+ pvlib/spectrum/irradiance.py,sha256=VY0-FTUv2WWHTZRyy4lo8lQGrAjIREf4nQMVYrv0mXM,7827
67
72
  pvlib/spectrum/mismatch.py,sha256=Vhp1WeyP4vle6hXLsAhDZYwPwyEdPjBhfDL2B1yi0BU,30497
68
73
  pvlib/spectrum/response.py,sha256=k3FCoPPR_2yGrfXPGsZljJcgrQ7sckQn0CwiqERNntY,9413
69
74
  pvlib/spectrum/spectrl2.py,sha256=sPOZe5lXgkwMem3JbEi19uW7OQq4FzxcZyCnxzXFjWs,19022
70
- pvlib-0.12.0.dist-info/licenses/AUTHORS.md,sha256=Fxk4p_lXlMeQ6g2A1-7oPrgpULDxuJuC9Ebc-3yyj_o,1474
71
- pvlib-0.12.0.dist-info/licenses/LICENSE,sha256=oC4S3araPPDV292K_91XfC7sZAdYqVhCowT3UTuMC-Q,1622
72
- pvlib-0.12.0.dist-info/METADATA,sha256=6OgwePCBl-de6_yVd1kyAjE7myv5Uzly_sWT22xYnt8,2937
73
- pvlib-0.12.0.dist-info/WHEEL,sha256=tTnHoFhvKQHCh4jz3yCn0WPTYIy7wXx3CJtJ7SJGV7c,91
74
- pvlib-0.12.0.dist-info/top_level.txt,sha256=eq9CH6YXUc3Fh3dyQ5hQXoGYfSm1SYEAlMygyR22MgE,6
75
- pvlib-0.12.0.dist-info/RECORD,,
75
+ pvlib-0.12.1a1.dist-info/licenses/AUTHORS.md,sha256=Fxk4p_lXlMeQ6g2A1-7oPrgpULDxuJuC9Ebc-3yyj_o,1474
76
+ pvlib-0.12.1a1.dist-info/licenses/LICENSE,sha256=oC4S3araPPDV292K_91XfC7sZAdYqVhCowT3UTuMC-Q,1622
77
+ pvlib-0.12.1a1.dist-info/METADATA,sha256=AuJUb7gX-u4wwLmcVz8otIDN7diBbl9UMprIHrD3_Q4,2899
78
+ pvlib-0.12.1a1.dist-info/WHEEL,sha256=wXxTzcEDnjrTwFYjLPcsW_7_XihufBwmpiBeiXNBGEA,91
79
+ pvlib-0.12.1a1.dist-info/top_level.txt,sha256=eq9CH6YXUc3Fh3dyQ5hQXoGYfSm1SYEAlMygyR22MgE,6
80
+ pvlib-0.12.1a1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (77.0.1)
2
+ Generator: setuptools (80.1.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5