pvlib 0.9.4a1__py3-none-any.whl → 0.10.0__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.
Files changed (86) hide show
  1. pvlib/__init__.py +3 -2
  2. pvlib/atmosphere.py +23 -173
  3. pvlib/bifacial/infinite_sheds.py +88 -277
  4. pvlib/bifacial/utils.py +270 -28
  5. pvlib/data/adr-library-cec-inverters-2019-03-05.csv +5009 -0
  6. pvlib/data/precise_iv_curves1.json +10251 -0
  7. pvlib/data/precise_iv_curves2.json +10251 -0
  8. pvlib/data/precise_iv_curves_parameter_sets1.csv +33 -0
  9. pvlib/data/precise_iv_curves_parameter_sets2.csv +33 -0
  10. pvlib/data/test_psm3_2017.csv +17521 -17521
  11. pvlib/data/test_psm3_2019_5min.csv +288 -288
  12. pvlib/data/test_read_psm3.csv +17522 -17522
  13. pvlib/data/test_read_pvgis_horizon.csv +49 -0
  14. pvlib/data/variables_style_rules.csv +3 -0
  15. pvlib/iam.py +207 -51
  16. pvlib/inverter.py +6 -1
  17. pvlib/iotools/__init__.py +7 -2
  18. pvlib/iotools/acis.py +516 -0
  19. pvlib/iotools/midc.py +4 -4
  20. pvlib/iotools/psm3.py +59 -42
  21. pvlib/iotools/pvgis.py +84 -28
  22. pvlib/iotools/sodapro.py +8 -6
  23. pvlib/iotools/srml.py +121 -18
  24. pvlib/iotools/surfrad.py +2 -2
  25. pvlib/iotools/tmy.py +146 -102
  26. pvlib/irradiance.py +270 -15
  27. pvlib/ivtools/sde.py +14 -20
  28. pvlib/ivtools/sdm.py +31 -20
  29. pvlib/ivtools/utils.py +127 -6
  30. pvlib/location.py +3 -2
  31. pvlib/modelchain.py +67 -70
  32. pvlib/pvarray.py +225 -0
  33. pvlib/pvsystem.py +169 -539
  34. pvlib/shading.py +43 -2
  35. pvlib/singlediode.py +216 -66
  36. pvlib/snow.py +36 -15
  37. pvlib/soiling.py +3 -3
  38. pvlib/spa.py +327 -368
  39. pvlib/spectrum/__init__.py +8 -2
  40. pvlib/spectrum/mismatch.py +335 -0
  41. pvlib/temperature.py +124 -13
  42. pvlib/tests/bifacial/test_infinite_sheds.py +44 -106
  43. pvlib/tests/bifacial/test_utils.py +102 -5
  44. pvlib/tests/conftest.py +0 -31
  45. pvlib/tests/iotools/test_acis.py +213 -0
  46. pvlib/tests/iotools/test_midc.py +6 -6
  47. pvlib/tests/iotools/test_psm3.py +7 -5
  48. pvlib/tests/iotools/test_pvgis.py +21 -14
  49. pvlib/tests/iotools/test_sodapro.py +1 -1
  50. pvlib/tests/iotools/test_srml.py +71 -6
  51. pvlib/tests/iotools/test_tmy.py +43 -8
  52. pvlib/tests/ivtools/test_sde.py +19 -17
  53. pvlib/tests/ivtools/test_sdm.py +9 -4
  54. pvlib/tests/ivtools/test_utils.py +96 -1
  55. pvlib/tests/test_atmosphere.py +8 -64
  56. pvlib/tests/test_clearsky.py +0 -1
  57. pvlib/tests/test_iam.py +74 -1
  58. pvlib/tests/test_irradiance.py +56 -2
  59. pvlib/tests/test_location.py +1 -1
  60. pvlib/tests/test_modelchain.py +33 -76
  61. pvlib/tests/test_pvarray.py +46 -0
  62. pvlib/tests/test_pvsystem.py +366 -201
  63. pvlib/tests/test_shading.py +35 -0
  64. pvlib/tests/test_singlediode.py +306 -29
  65. pvlib/tests/test_snow.py +84 -1
  66. pvlib/tests/test_soiling.py +8 -7
  67. pvlib/tests/test_solarposition.py +7 -7
  68. pvlib/tests/test_spa.py +6 -7
  69. pvlib/tests/test_spectrum.py +145 -1
  70. pvlib/tests/test_temperature.py +29 -11
  71. pvlib/tests/test_tools.py +41 -0
  72. pvlib/tests/test_tracking.py +0 -149
  73. pvlib/tools.py +49 -25
  74. pvlib/tracking.py +1 -269
  75. pvlib-0.10.0.dist-info/AUTHORS.md +35 -0
  76. {pvlib-0.9.4a1.dist-info → pvlib-0.10.0.dist-info}/LICENSE +5 -2
  77. {pvlib-0.9.4a1.dist-info → pvlib-0.10.0.dist-info}/METADATA +3 -13
  78. {pvlib-0.9.4a1.dist-info → pvlib-0.10.0.dist-info}/RECORD +80 -75
  79. {pvlib-0.9.4a1.dist-info → pvlib-0.10.0.dist-info}/WHEEL +1 -1
  80. pvlib/data/adr-library-2013-10-01.csv +0 -1762
  81. pvlib/forecast.py +0 -1211
  82. pvlib/iotools/ecmwf_macc.py +0 -312
  83. pvlib/tests/iotools/test_ecmwf_macc.py +0 -162
  84. pvlib/tests/test_forecast.py +0 -228
  85. pvlib-0.9.4a1.dist-info/AUTHORS.md +0 -32
  86. {pvlib-0.9.4a1.dist-info → pvlib-0.10.0.dist-info}/top_level.txt +0 -0
pvlib/tracking.py CHANGED
@@ -2,275 +2,7 @@ import numpy as np
2
2
  import pandas as pd
3
3
 
4
4
  from pvlib.tools import cosd, sind, tand, acosd, asind
5
- from pvlib.pvsystem import (
6
- PVSystem, Array, SingleAxisTrackerMount, _unwrap_single_value
7
- )
8
- from pvlib import irradiance, atmosphere
9
- from pvlib._deprecation import deprecated
10
-
11
-
12
- @deprecated('0.9.0', alternative='PVSystem with SingleAxisTrackerMount')
13
- class SingleAxisTracker(PVSystem):
14
- """
15
- A class for single-axis trackers that inherits the PV modeling methods from
16
- :py:class:`~pvlib.pvsystem.PVSystem`. For details on calculating tracker
17
- rotation see :py:func:`pvlib.tracking.singleaxis`.
18
-
19
- Parameters
20
- ----------
21
- axis_tilt : float, default 0
22
- The tilt of the axis of rotation (i.e, the y-axis defined by
23
- ``axis_azimuth``) with respect to horizontal.
24
- ``axis_tilt`` must be >= 0 and <= 90. [degree]
25
-
26
- axis_azimuth : float, default 0
27
- A value denoting the compass direction along which the axis of
28
- rotation lies. Measured in decimal degrees east of north.
29
-
30
- max_angle : float, default 90
31
- A value denoting the maximum rotation angle, in decimal degrees,
32
- of the one-axis tracker from its horizontal position (horizontal
33
- if axis_tilt = 0). A max_angle of 90 degrees allows the tracker
34
- to rotate to a vertical position to point the panel towards a
35
- horizon. max_angle of 180 degrees allows for full rotation.
36
-
37
- backtrack : bool, default True
38
- Controls whether the tracker has the capability to "backtrack"
39
- to avoid row-to-row shading. False denotes no backtrack
40
- capability. True denotes backtrack capability.
41
-
42
- gcr : float, default 2.0/7.0
43
- A value denoting the ground coverage ratio of a tracker system
44
- which utilizes backtracking; i.e. the ratio between the PV array
45
- surface area to total ground area. A tracker system with modules
46
- 2 meters wide, centered on the tracking axis, with 6 meters
47
- between the tracking axes has a gcr of 2/6=0.333. If gcr is not
48
- provided, a gcr of 2/7 is default. gcr must be <=1.
49
-
50
- cross_axis_tilt : float, default 0.0
51
- The angle, relative to horizontal, of the line formed by the
52
- intersection between the slope containing the tracker axes and a plane
53
- perpendicular to the tracker axes. Cross-axis tilt should be specified
54
- using a right-handed convention. For example, trackers with axis
55
- azimuth of 180 degrees (heading south) will have a negative cross-axis
56
- tilt if the tracker axes plane slopes down to the east and positive
57
- cross-axis tilt if the tracker axes plane slopes down to the west. Use
58
- :func:`~pvlib.tracking.calc_cross_axis_tilt` to calculate
59
- `cross_axis_tilt`. [degrees]
60
-
61
- **kwargs
62
- Passed to :py:class:`~pvlib.pvsystem.PVSystem`. If the `arrays`
63
- parameter is specified it must have only a single Array. Furthermore
64
- if a :py:class:`~pvlib.pvsystem.Array` is provided it must have
65
- ``surface_tilt`` and ``surface_azimuth`` equal to None.
66
-
67
- Raises
68
- ------
69
- ValueError
70
- If more than one Array is specified.
71
- ValueError
72
- If an Array is provided with a surface tilt or azimuth not None.
73
-
74
- See also
75
- --------
76
- pvlib.tracking.singleaxis
77
- pvlib.tracking.calc_axis_tilt
78
- pvlib.tracking.calc_cross_axis_tilt
79
- """
80
-
81
- def __init__(self, axis_tilt=0, axis_azimuth=0, max_angle=90,
82
- backtrack=True, gcr=2.0/7.0, cross_axis_tilt=0.0, **kwargs):
83
-
84
- mount_kwargs = {
85
- k: kwargs.pop(k) for k in ['racking_model', 'module_height']
86
- if k in kwargs
87
- }
88
- mount = SingleAxisTrackerMount(axis_tilt, axis_azimuth, max_angle,
89
- backtrack, gcr, cross_axis_tilt,
90
- **mount_kwargs)
91
-
92
- array_defaults = {
93
- 'albedo': None, 'surface_type': None, 'module': None,
94
- 'module_type': None, 'module_parameters': None,
95
- 'temperature_model_parameters': None,
96
- 'modules_per_string': 1,
97
- }
98
- array_kwargs = {
99
- key: kwargs.get(key, array_defaults[key]) for key in array_defaults
100
- }
101
- # strings/strings_per_inverter is a special case
102
- array_kwargs['strings'] = kwargs.get('strings_per_inverter', 1)
103
-
104
- array = Array(mount=mount, **array_kwargs)
105
- pass_through_kwargs = { # other args to pass to PVSystem()
106
- k: v for k, v in kwargs.items() if k not in array_defaults
107
- }
108
- # leave these in case someone is using them
109
- self.axis_tilt = axis_tilt
110
- self.axis_azimuth = axis_azimuth
111
- self.max_angle = max_angle
112
- self.backtrack = backtrack
113
- self.gcr = gcr
114
- self.cross_axis_tilt = cross_axis_tilt
115
-
116
- pass_through_kwargs['surface_tilt'] = None
117
- pass_through_kwargs['surface_azimuth'] = None
118
-
119
- super().__init__(arrays=[array], **pass_through_kwargs)
120
-
121
- def __repr__(self):
122
- attrs = ['axis_tilt', 'axis_azimuth', 'max_angle', 'backtrack', 'gcr',
123
- 'cross_axis_tilt']
124
- sat_repr = ('SingleAxisTracker:\n ' + '\n '.join(
125
- f'{attr}: {getattr(self, attr)}' for attr in attrs))
126
- # get the parent PVSystem info
127
- pvsystem_repr = super().__repr__()
128
- # remove the first line (contains 'PVSystem: \n')
129
- pvsystem_repr = '\n'.join(pvsystem_repr.split('\n')[1:])
130
- return sat_repr + '\n' + pvsystem_repr
131
-
132
- def singleaxis(self, apparent_zenith, apparent_azimuth):
133
- """
134
- Get tracking data. See :py:func:`pvlib.tracking.singleaxis` more
135
- detail.
136
-
137
- Parameters
138
- ----------
139
- apparent_zenith : float, 1d array, or Series
140
- Solar apparent zenith angles in decimal degrees.
141
-
142
- apparent_azimuth : float, 1d array, or Series
143
- Solar apparent azimuth angles in decimal degrees.
144
-
145
- Returns
146
- -------
147
- tracking data
148
- """
149
- tracking_data = singleaxis(apparent_zenith, apparent_azimuth,
150
- self.axis_tilt, self.axis_azimuth,
151
- self.max_angle, self.backtrack,
152
- self.gcr, self.cross_axis_tilt)
153
-
154
- return tracking_data
155
-
156
- def get_aoi(self, surface_tilt, surface_azimuth, solar_zenith,
157
- solar_azimuth):
158
- """Get the angle of incidence on the system.
159
-
160
- For a given set of solar zenith and azimuth angles, the
161
- surface tilt and azimuth parameters are typically determined
162
- by :py:meth:`~SingleAxisTracker.singleaxis`. The
163
- :py:meth:`~SingleAxisTracker.singleaxis` method also returns
164
- the angle of incidence, so this method is only needed
165
- if using a different tracking algorithm.
166
-
167
- Parameters
168
- ----------
169
- surface_tilt : numeric
170
- Panel tilt from horizontal.
171
- surface_azimuth : numeric
172
- Panel azimuth from north
173
- solar_zenith : float or Series.
174
- Solar zenith angle.
175
- solar_azimuth : float or Series.
176
- Solar azimuth angle.
177
-
178
- Returns
179
- -------
180
- aoi : Series
181
- The angle of incidence in degrees from normal.
182
- """
183
-
184
- aoi = irradiance.aoi(surface_tilt, surface_azimuth,
185
- solar_zenith, solar_azimuth)
186
- return aoi
187
-
188
- @_unwrap_single_value
189
- def get_irradiance(self, surface_tilt, surface_azimuth,
190
- solar_zenith, solar_azimuth, dni, ghi, dhi,
191
- albedo=None, dni_extra=None, airmass=None,
192
- model='haydavies',
193
- **kwargs):
194
- """
195
- Uses the :func:`irradiance.get_total_irradiance` function to
196
- calculate the plane of array irradiance components on a tilted
197
- surface defined by the input data and ``self.albedo``.
198
-
199
- For a given set of solar zenith and azimuth angles, the
200
- surface tilt and azimuth parameters are typically determined
201
- by :py:meth:`~SingleAxisTracker.singleaxis`.
202
-
203
- Parameters
204
- ----------
205
- surface_tilt : numeric
206
- Panel tilt from horizontal.
207
- surface_azimuth : numeric
208
- Panel azimuth from north
209
- solar_zenith : numeric
210
- Solar zenith angle.
211
- solar_azimuth : numeric
212
- Solar azimuth angle.
213
- dni : float or Series
214
- Direct Normal Irradiance
215
- ghi : float or Series
216
- Global horizontal irradiance
217
- dhi : float or Series
218
- Diffuse horizontal irradiance
219
- albedo : None, float or Series, default None
220
- Ground surface albedo. [unitless]
221
- dni_extra : float or Series, default None
222
- Extraterrestrial direct normal irradiance
223
- airmass : float or Series, default None
224
- Airmass
225
- model : String, default 'haydavies'
226
- Irradiance model.
227
-
228
- **kwargs
229
- Passed to :func:`irradiance.get_total_irradiance`.
230
-
231
- Returns
232
- -------
233
- poa_irradiance : DataFrame
234
- Column names are: ``total, beam, sky, ground``.
235
- """
236
-
237
- # not needed for all models, but this is easier
238
- if dni_extra is None:
239
- dni_extra = irradiance.get_extra_radiation(solar_zenith.index)
240
-
241
- if airmass is None:
242
- airmass = atmosphere.get_relative_airmass(solar_zenith)
243
-
244
- # SingleAxisTracker only supports a single Array, but we need the
245
- # validate/iterate machinery so that single length tuple input/output
246
- # is handled the same as PVSystem.get_irradiance. GH 1159
247
- dni = self._validate_per_array(dni, system_wide=True)
248
- ghi = self._validate_per_array(ghi, system_wide=True)
249
- dhi = self._validate_per_array(dhi, system_wide=True)
250
-
251
- if albedo is None:
252
- # assign default albedo here because SingleAxisTracker
253
- # initializes albedo to None
254
- albedo = 0.25
255
-
256
- albedo = self._validate_per_array(albedo, system_wide=True)
257
-
258
- return tuple(
259
- irradiance.get_total_irradiance(
260
- surface_tilt,
261
- surface_azimuth,
262
- solar_zenith,
263
- solar_azimuth,
264
- dni, ghi, dhi,
265
- dni_extra=dni_extra,
266
- airmass=airmass,
267
- model=model,
268
- albedo=albedo,
269
- **kwargs)
270
- for array, dni, ghi, dhi, albedo in zip(
271
- self.arrays, dni, ghi, dhi, albedo
272
- )
273
- )
5
+ from pvlib import irradiance
274
6
 
275
7
 
276
8
  def singleaxis(apparent_zenith, apparent_azimuth,
@@ -0,0 +1,35 @@
1
+ About the Copyright Holders
2
+ ===========================
3
+
4
+ * Copyright (c) 2023 pvlib python Contributors
5
+ * Copyright (c) 2014 PVLIB python Development Team
6
+ * Copyright (c) 2013 Sandia National Laboratories
7
+
8
+ The pvlib python Contributors comprises all authors of content of the pvlib python project.
9
+ A complete list of contributors can be found in the documentation.
10
+
11
+ The PVLIB python Development Team is the collection of developers of the
12
+ pvlib python project. Members of this team are included in the pvlib python Contributors.
13
+
14
+ Sandia National Laboratories originally developed pvlib python based on code in
15
+ PVLib MATLAB.
16
+
17
+
18
+ Our Copyright Policy
19
+ ====================
20
+
21
+ pvlib python uses a shared copyright model. Each contributor maintains copyright
22
+ over their contributions to pvlib python. However, it is important to note that
23
+ these contributions are typically only changes to the repositories. Thus,
24
+ the pvlib python source code, in its entirety, is not the copyright of any single
25
+ person or institution. Instead, it is the collective copyright of the
26
+ Contributors. If individual contributors want to make explicit their copyright
27
+ of the contributions they have made,
28
+ they should indicate their copyright using in-line comments in the code submitted
29
+ to the pvlib python repository, with the understanding that by contributing, they
30
+ grant the pvlib-python license.
31
+
32
+ License
33
+ =======
34
+
35
+ pvlib python is distributed under a 3-clause BSD license.
@@ -1,6 +1,9 @@
1
1
  BSD 3-Clause License
2
2
 
3
- Copyright (c) 2013-2021, Sandia National Laboratories and pvlib python Development Team
3
+ Copyright (c) 2023 pvlib python Contributors
4
+ Copyright (c) 2014 PVLIB python Development Team
5
+ Copyright (c) 2013 Sandia National Laboratories
6
+
4
7
  All rights reserved.
5
8
 
6
9
  Redistribution and use in source and binary forms, with or without modification,
@@ -13,7 +16,7 @@ are permitted provided that the following conditions are met:
13
16
  list of conditions and the following disclaimer in the documentation and/or
14
17
  other materials provided with the distribution.
15
18
 
16
- Neither the name of the {organization} nor the names of its
19
+ Neither the name of the copyright holder nor the names of its
17
20
  contributors may be used to endorse or promote products derived from
18
21
  this software without specific prior written permission.
19
22
 
@@ -1,10 +1,10 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pvlib
3
- Version: 0.9.4a1
3
+ Version: 0.10.0
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: pvlib python Developers
7
- Maintainer-email: holmgren@email.arizona.edu
7
+ Maintainer-email: pvlib-admin@googlegroups.com
8
8
  License: BSD 3-Clause
9
9
  Project-URL: Bug Tracker, https://github.com/pvlib/pvlib-python/issues
10
10
  Project-URL: Documentation, https://pvlib-python.readthedocs.io/
@@ -23,18 +23,15 @@ Requires-Dist: numpy (>=1.16.0)
23
23
  Requires-Dist: pandas (>=0.25.0)
24
24
  Requires-Dist: pytz
25
25
  Requires-Dist: requests
26
- Requires-Dist: scipy (>=1.2.0)
26
+ Requires-Dist: scipy (>=1.4.0)
27
27
  Requires-Dist: h5py
28
28
  Requires-Dist: importlib-metadata ; python_version < "3.8"
29
29
  Provides-Extra: all
30
- Requires-Dist: cftime (>=1.1.1) ; extra == 'all'
31
30
  Requires-Dist: cython ; extra == 'all'
32
31
  Requires-Dist: docutils (==0.15.2) ; extra == 'all'
33
32
  Requires-Dist: ephem ; extra == 'all'
34
33
  Requires-Dist: ipython ; extra == 'all'
35
34
  Requires-Dist: matplotlib ; extra == 'all'
36
- Requires-Dist: netcdf4 ; extra == 'all'
37
- Requires-Dist: nose ; extra == 'all'
38
35
  Requires-Dist: nrel-pysam ; extra == 'all'
39
36
  Requires-Dist: numba ; extra == 'all'
40
37
  Requires-Dist: pillow ; extra == 'all'
@@ -47,7 +44,6 @@ Requires-Dist: pytest-remotedata ; extra == 'all'
47
44
  Requires-Dist: pytest-rerunfailures ; extra == 'all'
48
45
  Requires-Dist: pytest-timeout ; extra == 'all'
49
46
  Requires-Dist: requests-mock ; extra == 'all'
50
- Requires-Dist: siphon ; extra == 'all'
51
47
  Requires-Dist: sphinx (==4.5.0) ; extra == 'all'
52
48
  Requires-Dist: sphinx-gallery ; extra == 'all'
53
49
  Requires-Dist: sphinx-toggleprompt (>=0.0.5) ; extra == 'all'
@@ -60,22 +56,16 @@ Requires-Dist: pydata-sphinx-theme (==0.8.1) ; extra == 'doc'
60
56
  Requires-Dist: sphinx-gallery ; extra == 'doc'
61
57
  Requires-Dist: docutils (==0.15.2) ; extra == 'doc'
62
58
  Requires-Dist: pillow ; extra == 'doc'
63
- Requires-Dist: netcdf4 ; extra == 'doc'
64
- Requires-Dist: siphon ; extra == 'doc'
65
59
  Requires-Dist: sphinx-toggleprompt (>=0.0.5) ; extra == 'doc'
66
60
  Requires-Dist: pvfactors ; extra == 'doc'
67
61
  Provides-Extra: optional
68
62
  Requires-Dist: cython ; extra == 'optional'
69
63
  Requires-Dist: ephem ; extra == 'optional'
70
- Requires-Dist: netcdf4 ; extra == 'optional'
71
64
  Requires-Dist: nrel-pysam ; extra == 'optional'
72
65
  Requires-Dist: numba ; extra == 'optional'
73
66
  Requires-Dist: pvfactors ; extra == 'optional'
74
- Requires-Dist: siphon ; extra == 'optional'
75
67
  Requires-Dist: statsmodels ; extra == 'optional'
76
- Requires-Dist: cftime (>=1.1.1) ; extra == 'optional'
77
68
  Provides-Extra: test
78
- Requires-Dist: nose ; extra == 'test'
79
69
  Requires-Dist: pytest ; extra == 'test'
80
70
  Requires-Dist: pytest-cov ; extra == 'test'
81
71
  Requires-Dist: pytest-mock ; extra == 'test'
@@ -1,29 +1,29 @@
1
- pvlib/__init__.py,sha256=K2gorUgShiwn5U-c1tQR2gJuLooWF31BWX_qTyFb8mE,407
1
+ pvlib/__init__.py,sha256=qwhsPejThIvdjXjmvMilAJ09x1mPQEvViMmVfsnvRac,473
2
2
  pvlib/_deprecation.py,sha256=f1SulhOD36F3Cd92ZS3-NAgkDjvaBUpYKvav7vDREno,13140
3
- pvlib/atmosphere.py,sha256=89jv9JuxQu4hggJGQH6kSrL0krMfUYRdTeWYRM_OUro,24256
3
+ pvlib/atmosphere.py,sha256=FX66fGf9WebMfcTLguw2AOx-kgojT9JkqRkSnB4wLi0,17738
4
4
  pvlib/clearsky.py,sha256=4y5jGvNjkE-CV9dRAU3u6k7y894q69vPVjr4-Q1Tb18,35298
5
- pvlib/forecast.py,sha256=FS44WY8rd7RYIsFDzwVFze82g86_tbbVuRK-EwdhsbE,39513
6
- pvlib/iam.py,sha256=U0w9hBkiVaDbqB93XtYArusLQgrewp7qLYgSXm_5EmM,25085
7
- pvlib/inverter.py,sha256=IhCBefVhwQ68f3UI-v4SmuTJnJTzRbu5RtQgo113Z6g,18857
8
- pvlib/irradiance.py,sha256=90hZp6lLEy-RE0sS52-8hG_yO_Y3sVsjPlktUHXxYc4,114612
9
- pvlib/location.py,sha256=AyXUCLh1J6zA4NydcQ8LkRcX_jWHxIuaTiktN8pdG9Q,15438
10
- pvlib/modelchain.py,sha256=c5UlOxmTTUs6EdakGpPigMmJdxDRAkHXN3ZENQ00gx8,78875
11
- pvlib/pvsystem.py,sha256=5vsn7wfXWOXx2ka6z1ODZ17P_gjwuqKJUsTbjMQB-2k,122066
5
+ pvlib/iam.py,sha256=ZvjHLwxVVNpzCR3yPXcEKhG7a179xrLkEiJ47cekzdY,30462
6
+ pvlib/inverter.py,sha256=JAg2wOYWFYA0xOehOlPzYJqnzioIeuPexoDX27sG5IY,19115
7
+ pvlib/irradiance.py,sha256=y0fA1CHrIjVbSTM0e-s3uHvLThDvPpY3gxCr79y_Xlc,123113
8
+ pvlib/location.py,sha256=Ve4Q8Yl23lMqYOFNQcwk3jacVYXOCak0MXOORdQSlRw,15452
9
+ pvlib/modelchain.py,sha256=zRE8s5gU90cRQBQah-kDxQ3A8ommTzGh1I2pMwjrooE,77833
10
+ pvlib/pvarray.py,sha256=hvly3SaWJx--WjQto_CCBz81IEAMh1c1kEFWKRZgMAs,7900
11
+ pvlib/pvsystem.py,sha256=n4LulUmO9WCczTqYRAsDKbfsu3oKLaKNEm9rDgo8dB4,109308
12
12
  pvlib/scaling.py,sha256=W0EzYNk-07ivSYnqPRNNeortD50x8WIG6Qlue_foUrQ,10964
13
- pvlib/shading.py,sha256=ecik4oRGyUT_O91ofWmFhs_diOC3s9r8CQTQ6Qr5bDo,6761
14
- pvlib/singlediode.py,sha256=Zoj_7nZn3HPnVFMCoPqbbEeduRILcPEX-39fKN3lrvU,29321
15
- pvlib/snow.py,sha256=w0gUD6flbqE0IyXQT3fpif6HUpotwGISWB3GrzW0g4w,11535
16
- pvlib/soiling.py,sha256=ifCuWV65djpaQdsR5M7PbLDmdb8X62_lhWIwHbHaRSk,8778
13
+ pvlib/shading.py,sha256=p3OccGpwHRxciUs8Wu0-2p5GFDTPxCCv-MJgme7pPOE,8071
14
+ pvlib/singlediode.py,sha256=5NhAK63C1Cc4kn2ko8SChn_oKhumZDnDgPBun5R-s0c,34863
15
+ pvlib/snow.py,sha256=Y1etLwblIj6oWyWhxepqgwCIrmx4f8m7f8On5-qBcCY,12500
16
+ pvlib/soiling.py,sha256=KhdBIpDFAXy_gtEm2wdO7bZUukKJKclofhaoZVo5f9w,8804
17
17
  pvlib/solarposition.py,sha256=D4DYAOx0DTTo-hdhXKWOYbU29WKkAnwmuX1VuzsPP8c,50230
18
- pvlib/spa.py,sha256=5HgWGCVpa0i2EC_6mGMi2yYwcROmbXiOzzzcWpvr9Tk,48216
19
- pvlib/temperature.py,sha256=ZqFkF2nNj_g7Skc_8H8rCmLH_gAs1TGZsDjT070KZhU,51221
20
- pvlib/tools.py,sha256=HhBaRpGD4JSgB6hVbNbBaHT1QfYJCl1tULZdpZMgddQ,11685
21
- pvlib/tracking.py,sha256=_4GDcCiyDNnzBq51QJFls10i_efBfCP3850SKm4fZaA,26671
18
+ pvlib/spa.py,sha256=YxBbhYsgZu7RDP9YHNC4i11BB9oaHKJOMCDN8Zw_MJ4,45146
19
+ pvlib/temperature.py,sha256=b7lSm5_JLs8FcRjAGx8ILnjYjTXlVpuS1sWtcxNekZU,55351
20
+ pvlib/tools.py,sha256=Ez3660kpoQpUYN3tZLbnOQmeI9M7M3OVV6QXkgeHocg,12282
21
+ pvlib/tracking.py,sha256=jCrmp1_lXAy-GbnXCSzHjSDYi89WvqYHxdcpxvSkPSg,16180
22
22
  pvlib/version.py,sha256=9b2gyX4rmKu60DCgjOhhiEQSF9sD5utxNUJ3NSftRWs,282
23
23
  pvlib/bifacial/__init__.py,sha256=8uOiQ8cR0Wp62F-dLW25b1_xI3AxhwWlNagXqMyZUqA,412
24
- pvlib/bifacial/infinite_sheds.py,sha256=pdGM9W3uZaPyKyxEvH6fQ20lPzDaKqwpW46LfBULQIY,28956
24
+ pvlib/bifacial/infinite_sheds.py,sha256=rhnXS2znyjGKLBqlGKGxHxH6BEeRJZYnDwP9XI_iWlk,22422
25
25
  pvlib/bifacial/pvfactors.py,sha256=X6g-eMfSjsH20SDil-21RgtSltlFY6GoK_dWRHQlPj0,5240
26
- pvlib/bifacial/utils.py,sha256=CW5iNoS0gIFLt8JGojXcE0hFd8YRxLaA8RNBqXT6D6E,5754
26
+ pvlib/bifacial/utils.py,sha256=tYm9ZRQjbpM1Y-Cl4yFzmINJm1L6KyAZ8K33DvnIGzM,14501
27
27
  pvlib/data/12839.tm2,sha256=6v86FhwMJeUJIEx8Mj9Rqp_OqmeaQ3rpObunQVaM6ss,1261501
28
28
  pvlib/data/703165TY.csv,sha256=8DM6aKEW9a6S8ShaKrh4TY4A5So2dEVlisiNctk9jKQ,1760582
29
29
  pvlib/data/723170TYA.CSV,sha256=Hpb4RjjOmOaykAK8RaJ6ppuymw7QNo07Urex-BYQxsk,1716576
@@ -39,7 +39,7 @@ pvlib/data/PVsyst_demo.csv,sha256=DX4xxHv2nswAVWtR7Ju26Ke51bD2TglqS9n3W7cLKp0,38
39
39
  pvlib/data/PVsyst_demo_model.csv,sha256=HR3W-DYWjQBo5oYnUdRj8KzaawwyCTjbTTDxA4Jdt20,165015
40
40
  pvlib/data/SRML-day-EUPO1801.txt,sha256=66D1mrvtC5TAsKY-8-BkSzDNJzXfgBmC5Y51KgR3kpk,44305
41
41
  pvlib/data/abq19056.dat,sha256=fgU9VMDhQEZUXaHGuXdykTUdtCbmXy-CTsBVC5AkEmY,558
42
- pvlib/data/adr-library-2013-10-01.csv,sha256=UjXy5wL4qneiMpM4ysDo0MXzNl4AmF9SA_AJtbbmcnA,335331
42
+ pvlib/data/adr-library-cec-inverters-2019-03-05.csv,sha256=6yNlInxEMmvyUEGnYEJQFB4NpDqE0qoNWBA3frRStXs,1147612
43
43
  pvlib/data/aod550_tcwv_20121101_test.nc,sha256=zFbh9mLRA6BrCmC2coDJU-cOvE34qbkDBZM4pjo-kAc,236128
44
44
  pvlib/data/astm_g173_am15g.csv,sha256=LDm-EFsMpL14OecADlsg-hSb_G59ksOWWW1F7evmMEA,29812
45
45
  pvlib/data/bishop88_numerical_precision.csv,sha256=SDuzjsjNf_vNwapKvy3hb2b4lz2MPTIyDIMWCAgQXDk,17587
@@ -59,6 +59,10 @@ pvlib/data/midc_20181014.txt,sha256=5wgTSipMmMjP8LJOOL8NG0hBsj772sV14WmXN-Fv140,
59
59
  pvlib/data/midc_raw_20181018.txt,sha256=bLM44y8QY2_GPOJ_p_Uk4-IZEmFW55wxpaRHJLVjFNE,192828
60
60
  pvlib/data/midc_raw_short_header_20191115.txt,sha256=f5cIRvXSB6FCuGJu6663m4Qvu2cY-ncEdM2CObm8ObQ,205966
61
61
  pvlib/data/msn19056.dat,sha256=28xnH1XO5kv2-r_MGBg_4_t6rk9LhnC8PJt2Gm4soNE,791
62
+ pvlib/data/precise_iv_curves1.json,sha256=7IF81mYIJxK_mfJh8-S3c-LNDv4oAMK2N2qkcMiaq4o,337611
63
+ pvlib/data/precise_iv_curves2.json,sha256=95-mKuhqylKtOhN5S8bRi5PN-OWYdfcoVIEShYTqYVs,338564
64
+ pvlib/data/precise_iv_curves_parameter_sets1.csv,sha256=Ko34GG5IUJkcwoRJIR5bJQpsLbbAO45EbgEiDJlijeE,1043
65
+ pvlib/data/precise_iv_curves_parameter_sets2.csv,sha256=8bDzjzQFKte1hN1APUimEUCcaurgwCeOgi2ns_KhqX8,1059
62
66
  pvlib/data/pvgis_hourly_Timeseries_45.000_8.000_SA2_10kWp_CIS_5_2a_2013_2014.json,sha256=KgCDSeiq33_gGoPWpC9eEMfZeCM1f9R36x1HJ9drTA4,3466
63
67
  pvlib/data/pvgis_hourly_Timeseries_45.000_8.000_SA_30deg_0deg_2016_2016.csv,sha256=vBTKmB2WC9Y_QydX-oMXqahaEYtTKR1cVri4TU3asuA,1272
64
68
  pvlib/data/pvgis_tmy_meta.json,sha256=jxxOMzHlXvFx4TPbVZobcg7DR5OqyembbRCTpH5vzCY,2457
@@ -72,33 +76,34 @@ pvlib/data/singleaxis_tracker_wslope.csv,sha256=Mco2CzLDQRzIYQ8m2MNe5mGOe_jaS1P6
72
76
  pvlib/data/soiling_hsu_example_inputs.csv,sha256=Dkr0Sc5GA2s6I2hBSeAGIEI5J4KKBNgf-LTtzKS0qEE,319716
73
77
  pvlib/data/spectrl2_example_spectra.csv,sha256=nVxUIG6zT89B-hT1IgbA-IqA7kVJTveUnDnGuPbcPgw,11607
74
78
  pvlib/data/surfrad-slv16001.dat,sha256=jWgdB8kWGBLbT4LQxD0k8AIjTPXJu7oUeznLA4xVD4M,339883
75
- pvlib/data/test_psm3_2017.csv,sha256=_nunruSXKNMQ27QTaiSKUGSBshnl23tOedvkvc7uCVk,937113
76
- pvlib/data/test_psm3_2019_5min.csv,sha256=yHZ84EX3gI-coc0tHr3sOFHKzVM7B7TFSE3FRuI5xqA,27775
79
+ pvlib/data/test_psm3_2017.csv,sha256=bSDiZEeNAwgSSXfvp8TIIWqzI41XPV7FtozauPaRKg4,1140042
80
+ pvlib/data/test_psm3_2019_5min.csv,sha256=2_XLRC7O7KVMBDOcCbsnKyQdWYh8eq2pIrGd6KR0wwk,21555
77
81
  pvlib/data/test_psm3_tmy-2017.csv,sha256=s3X0FWEVz_sbHeDZQZQ0aigvQRJMTCMR0W2JY1tw53o,470325
78
- pvlib/data/test_read_psm3.csv,sha256=slcq2NbiXr1OuFtoy5svvNDNll08gB-PHMkam8MdB0k,1800851
82
+ pvlib/data/test_read_psm3.csv,sha256=_dNpdqysKoheqBhnli6vc3ZMftZscx9pnU0p-rhitWQ,1781292
83
+ pvlib/data/test_read_pvgis_horizon.csv,sha256=LhPsozGCc3_VN3HEoy9-kVhC87uRLt28KPzjJAzCFYY,431
79
84
  pvlib/data/tmy_45.000_8.000_2005_2016.csv,sha256=E5TG3J5b2GhQ-q-uYl2cFK0laoy5xZZ3tsHOqc-tH44,587053
80
85
  pvlib/data/tmy_45.000_8.000_2005_2016.epw,sha256=XdZcDKkpuSJ4khYoPGogdpJb5AZ0MkhEMvAxFDagGbo,1861160
81
86
  pvlib/data/tmy_45.000_8.000_2005_2016.json,sha256=dZmqXOE6-0AcBxAll97yYTWnB7fUwfw-ZkI3AdKMPGo,1442753
82
87
  pvlib/data/tmy_45.000_8.000_2005_2016.txt,sha256=1oWbUx3hwZ7VTBed2rpXg0tvJFNEDGaXwEnOzt_Ytc0,586345
83
88
  pvlib/data/tmy_45.000_8.000_userhorizon.json,sha256=UnwM9O_cGX-B6-ntglr4EIiLWv0CDi3dQxE6YeBNVRk,1435855
84
- pvlib/data/variables_style_rules.csv,sha256=yk7FWvEbMZfqz5ItYArZnms8wS-2q9ERqEv9nDHxBY8,2210
85
- pvlib/iotools/__init__.py,sha256=g37GiVsnG488jTThHACyUsHtsazn3-hwaGcleXYSTBE,1401
89
+ pvlib/data/variables_style_rules.csv,sha256=al08RBNVccK0jQ0WE6vy-0KP09DM0QfA3VpDNPq6udk,2487
90
+ pvlib/iotools/__init__.py,sha256=-rKhQ-MrfPRSKF0yA05GVl8cQOQVgLFFr-WT0WLUOWs,1703
91
+ pvlib/iotools/acis.py,sha256=nzuH3SZBhMNoSk0fBr35O4YADDah6D02Acyj5RNUYeI,18449
86
92
  pvlib/iotools/bsrn.py,sha256=PPM66_7enR_1K6wSnBY7pqCTpXOtjgZC3JQ4wlOjGa4,21676
87
93
  pvlib/iotools/crn.py,sha256=PLugc4RF_0LzesWHnyCOtx9KmqeECZH9kxcXgzgjGrQ,5336
88
- pvlib/iotools/ecmwf_macc.py,sha256=qLWeZBxMrZFd5W0OSLPC1rPJ4UZtPNTT2LgRozvsnX0,11415
89
94
  pvlib/iotools/epw.py,sha256=NW-gtVsLnpyWQmM4Sn7LvbdOHa8DXZsA6X1loj7Mwp8,17287
90
- pvlib/iotools/midc.py,sha256=CQuayp7yW9H_GIcw7nS9NrjdwmV43RrjdYD_saQ1Oxg,9307
91
- pvlib/iotools/psm3.py,sha256=_Du0xViphTVdCGBXDPCYQV58Hk7WBG5pLFlWOECYkAw,15263
92
- pvlib/iotools/pvgis.py,sha256=OIA-lXV5uRfkzMk8tUvwvluXFoWqkQfRIKRrNIGTrbs,28294
93
- pvlib/iotools/sodapro.py,sha256=J5E5snBSeOWzvyedLnMdckTf28G-QafEAm_RHOl7rSE,15227
95
+ pvlib/iotools/midc.py,sha256=GYxKOH9ykQGJOMoFlWVFkXqsf9y5GdHeOBKfYF0N_iQ,9311
96
+ pvlib/iotools/psm3.py,sha256=VPjWRGYJsFtmAzmTpIzJ0KctR5XXoMrE5cBS8GvJkys,15465
97
+ pvlib/iotools/pvgis.py,sha256=TRX8SMrakvgfoUefcuXU2dfByx-gG5AE14bha96XUyM,30148
98
+ pvlib/iotools/sodapro.py,sha256=JrqdKKvvd_sc3-mm4R_CfwC2OH6qOQP4PQyX1j7OJMc,15250
94
99
  pvlib/iotools/solrad.py,sha256=AzVRw2wYIe2L6Bkn0jtogNvsyImGZ0oHr-7flm5FvH4,4256
95
- pvlib/iotools/srml.py,sha256=Cz95E3AJ4GzmVSfKTJ1LGhkse8uXMUsYvPdbE7k0Sc0,7228
96
- pvlib/iotools/surfrad.py,sha256=6TXuF3FO-ybXgc9NgwQpg7qQMGJw1QFTuBsUKDX3ctc,7358
97
- pvlib/iotools/tmy.py,sha256=nsQDY964wTsNeMo3_IX7bxEzcYscejPjOcaO94I8ZY8,28153
100
+ pvlib/iotools/srml.py,sha256=UVre_XuDHWIIEfNXQDEzXjpkM9jmw6lvLDtRX0j5Tlc,10986
101
+ pvlib/iotools/surfrad.py,sha256=fhC-WbHt6RMoM3z68hiYGe8dlZ9yZOF--_M8akon2hw,7360
102
+ pvlib/iotools/tmy.py,sha256=O8NoxWOa7VYFpFJ0bXtAQjoRxe-95j6MKHN_UPLKuqs,30733
98
103
  pvlib/ivtools/__init__.py,sha256=bnUDPqkzCP96CaFFK3Gw4HNczJoHtO-cI9GBGAtZVGI,159
99
- pvlib/ivtools/sde.py,sha256=kj60xtP5rsn_mdgL_74pjWqfywVnwOmr-NNGuERL2Ck,17205
100
- pvlib/ivtools/sdm.py,sha256=qzYbXqXEI05iJ25QDINIF9uatGXK57UJLCAamqrVd5s,50560
101
- pvlib/ivtools/utils.py,sha256=q904Y8_Qmrzq7O4wXDYk0FpdRR6R3T1zszDYCM27RZg,15406
104
+ pvlib/ivtools/sde.py,sha256=V3_ZZR7ZPF0ikkX8_j1fntTHtYKfZXPhbwZRCiut1EM,17020
105
+ pvlib/ivtools/sdm.py,sha256=65cWHDYfRW4u1dOiRFwXTDoNsc137pAcllToT8d9pd8,50860
106
+ pvlib/ivtools/utils.py,sha256=htxBkD89t7sGPLFsXopT4LMOK6y4F3lUp4B49J3AtHo,19424
102
107
  pvlib/spa_c_files/README.md,sha256=6a1vHAYR0goT6OcH3T9STEkDbMLmnOIBnx64u-jHwFI,3196
103
108
  pvlib/spa_c_files/SPA_NOTICE.md,sha256=VrLtjEk8LusDkc4OsXl5-TtHhXZGkByAR5YwrDzRbNU,2467
104
109
  pvlib/spa_c_files/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -106,57 +111,57 @@ pvlib/spa_c_files/cspa_py.pxd,sha256=iJSd5KPC_pMSEGCMbYeTQjCE3I7Uv89oLpqli0H03H4
106
111
  pvlib/spa_c_files/setup.py,sha256=RcMEf0R2wKHJjvpUH5y6h22m86y6UrdXwkPkHKNme48,1102
107
112
  pvlib/spa_c_files/spa_py.pyx,sha256=XMjlxfcSPM2nXTWVbyGme0HFBvPhOxRFuQEnbhQfT3Q,809
108
113
  pvlib/spa_c_files/spa_py_example.py,sha256=p3ms0mhLycAuZJyaE3Wageqnd_56zh2EKxXK-jlTJfg,1179
109
- pvlib/spectrum/__init__.py,sha256=qBKee1xGlfwfq_h6ILCy4ef6sACuNPUA_NMgoSdd8RM,205
110
- pvlib/spectrum/mismatch.py,sha256=M3p1OQP0PoPWuelKWqAOfZe03hlmcAofqdRcUlE7mbg,9423
114
+ pvlib/spectrum/__init__.py,sha256=Xtu6PejkWxUuJSkmXjdsAQJn1GUj4HmRGlOmGZbqUL8,286
115
+ pvlib/spectrum/mismatch.py,sha256=ZB60MWD4b_14O9uUmmlHAxafgKUY9I5N_vUk-n0iop8,22609
111
116
  pvlib/spectrum/spectrl2.py,sha256=yxv6gxEZGFhhje2vWRGXZocLOyk_1xOffxj21sN3eSQ,18961
112
117
  pvlib/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
113
- pvlib/tests/conftest.py,sha256=tZK7ZgG4MkJVDN20ZVCuDBAYCxfM3t5C7YEgC3grKik,13490
114
- pvlib/tests/test_atmosphere.py,sha256=TFbPKHyEJFynYLM3Z7p14mCc6weFJKGtCFCC2J2VSXA,7536
115
- pvlib/tests/test_clearsky.py,sha256=GiduSFMBKH1VLXdizORilVHtJ7YX9S3bY_K0anm0D_w,31153
118
+ pvlib/tests/conftest.py,sha256=F89vLxzO9ZE-K5zKbtap87k8w5jaUcx5chAHdttQi0M,12763
119
+ pvlib/tests/test_atmosphere.py,sha256=v36-rFPPCB0v5qWo-Bi2pzx0sYiUo0W2BXS4cLgOTik,4878
120
+ pvlib/tests/test_clearsky.py,sha256=H6dG4xPpd-9gVy0MWrWjXwh5ZFCLfaeDc5vACg02C9w,31072
116
121
  pvlib/tests/test_conftest.py,sha256=jgSIL34Rp3fY2JoLVaVOupIew0Yclf5K9kgLGg1e3LU,2834
117
- pvlib/tests/test_forecast.py,sha256=xzOrtdx2m6qrwA0YDpSxQMuRjyVq57JaEx0AJbX7500,7486
118
- pvlib/tests/test_iam.py,sha256=moK39AyHZtWZQkSVfilupyKgBsvpyT9s9CGTEdcYpog,10374
122
+ pvlib/tests/test_iam.py,sha256=_vZYfh8D_kxONX2k8aIbE2uBej1DwAizFUiNosfIz6I,13064
119
123
  pvlib/tests/test_inverter.py,sha256=Xv_GLXkJfbS4HTOMzvKs_FQs6FFTCy7FaLFryGXkWMg,7434
120
- pvlib/tests/test_irradiance.py,sha256=tQazTmh7_kjC9P3et9BJVBqgOqdbwAW3CX0vJdvOAu0,47108
121
- pvlib/tests/test_location.py,sha256=TCdlYCyMu5xZZHmoBOTza0VJirfrTrb5wN5GtUOiyU0,13263
122
- pvlib/tests/test_modelchain.py,sha256=HBvU2EoPEacG9q7GGDI014MDo9nVG6nkNHNxDg35lcs,89272
124
+ pvlib/tests/test_irradiance.py,sha256=PkGIR7rXEOoZ-v3IZtl5IaXeAnIaOQ0tZgQhoQ60ad4,48776
125
+ pvlib/tests/test_location.py,sha256=jZZdWysFtC_dPt4jzdqJgfF7FxA2lwCAmlpmWzAq17M,13283
126
+ pvlib/tests/test_modelchain.py,sha256=rKNQCXpy-LEzXtlve1C0VGRg5QJpKSvBzFxgQ2biFQ4,86829
123
127
  pvlib/tests/test_numerical_precision.py,sha256=hu9ebaykI3WxZhE1SOzbw0zjjcYjg79-T5oGQlBNzXo,4331
124
- pvlib/tests/test_pvsystem.py,sha256=DrZk81Dll-IRw7UfvhmN7FVjnfJo6HnlBwYO81CTauI,92681
128
+ pvlib/tests/test_pvarray.py,sha256=LfEaCJl3jBVSGEjld0mWkIqkWfWFUmXkQiQDzXrhwcE,1686
129
+ pvlib/tests/test_pvsystem.py,sha256=PCvu7sq8L0zJgcnDDMoZcxWn-1bJxOhHOPXOIEw5HBY,97895
125
130
  pvlib/tests/test_scaling.py,sha256=KlzMAiZcpWHLega4JJIBUy5PbzworWm9tqjLFaqoFcg,6832
126
- pvlib/tests/test_shading.py,sha256=c0jUVeypAxxROUiO7SFk2qF9203Auj1kOT8bjIxsZ88,2515
127
- pvlib/tests/test_singlediode.py,sha256=S6iHnxNvcu--sfomfDs9oEsPA19SirQZJJevh2m_lI0,11085
128
- pvlib/tests/test_snow.py,sha256=NYEGf3Ayh_AuC93PR5_TQ_Dv9WLIWbbD3AYxnP8eU4w,5733
129
- pvlib/tests/test_soiling.py,sha256=6rNQwJ1pAFIiQA13BIBrj36f9SCF2QkIzvKHue3Df-U,8092
130
- pvlib/tests/test_solarposition.py,sha256=9Fy3L2SXt7y1gUljRAGylhB16gAm8RU0xiisE4xb0kI,37513
131
- pvlib/tests/test_spa.py,sha256=MFl5E5hKqOerQpUxs_vij6fwgc_SmGOwMr114oDdMmA,17340
132
- pvlib/tests/test_spectrum.py,sha256=KXDMEszHhPzw1Zta-Fw5IKFjOfSzyaB06MGjQdHcS7k,6054
133
- pvlib/tests/test_temperature.py,sha256=b3vvjUQ7pikSFuNoR1Kmf9c1z6M_uvuog1TBRh5zB5w,17773
134
- pvlib/tests/test_tools.py,sha256=5OVpVrLKlwvF4r3T7839A45lf5GO-OsuIJevXQTNsSA,3216
135
- pvlib/tests/test_tracking.py,sha256=bIUzJgACJ5v5W80ORjBhnBsY-2YPX9GULUJml88y0v4,26264
131
+ pvlib/tests/test_shading.py,sha256=mXODa-4WgT40RDHQfBS8nDA3Ubeo1uyup9pLN3JotjA,3585
132
+ pvlib/tests/test_singlediode.py,sha256=ECDHIP1xOM_a237o7-JOqz-1imZw01YPplaVBN3pryU,22063
133
+ pvlib/tests/test_snow.py,sha256=Xrpb5XI99mJxvreqH_7AjXQ3q66Wk89iJ4YM44G0tsI,8588
134
+ pvlib/tests/test_soiling.py,sha256=QepAr_jVS24l07EUx8rrTjG67t7_vltJ1si_MlOXAGE,8183
135
+ pvlib/tests/test_solarposition.py,sha256=26W_ys-y8Kz6W44Pafu_DcUEcdbKQzuk37yKOd99xnQ,37485
136
+ pvlib/tests/test_spa.py,sha256=quMU4OwNUOPj9ItMDuOluCfYQMCYmV2Wy6PZ_-Oc4qs,17341
137
+ pvlib/tests/test_spectrum.py,sha256=mkT1b1NWTAnRnrT8IBDgikjwjN_SyHWS5eToxV2hMls,12261
138
+ pvlib/tests/test_temperature.py,sha256=g9wIOlGD_IAayZDFV4rg0jWvz_KrTmr1AWunrkTXeeU,18437
139
+ pvlib/tests/test_tools.py,sha256=oK3uBRlQlkWcV4tWcyeceWhkZvGeBymsaxtbHX7KRXE,4879
140
+ pvlib/tests/test_tracking.py,sha256=Ryy6gMa36E-iCeP0fGkfUg1FDt5OyvAmjocTMuJ11VY,19893
136
141
  pvlib/tests/bifacial/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
137
- pvlib/tests/bifacial/test_infinite_sheds.py,sha256=kQs4U6vznsUhgkDcea5sfhvTgaFKlk-2yMBwAojDMEQ,13993
142
+ pvlib/tests/bifacial/test_infinite_sheds.py,sha256=dlr_2Qv-cTVzngQEWRyqpFGSZ7guiILRqElIcdeP9D0,11809
138
143
  pvlib/tests/bifacial/test_pvfactors.py,sha256=vocfxIsBAZwaEeRDfRAZmvemuYIRXI0UVbuKqUXRU6g,3144
139
- pvlib/tests/bifacial/test_utils.py,sha256=_plKNZuvrcjrZBi4pq0v5xctlcTB7Fm66-c0q_e6q-c,3816
144
+ pvlib/tests/bifacial/test_utils.py,sha256=8SL3R5KnISDLEYDt9_3_b8-OuDKauC8MKMQ5XdT9PpQ,8043
140
145
  pvlib/tests/iotools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
146
+ pvlib/tests/iotools/test_acis.py,sha256=Ya1CzAcQDzUWFaVZduiE_rGfx7RBbQtxajW4ekfWIWE,8440
141
147
  pvlib/tests/iotools/test_bsrn.py,sha256=7DHT6CcEGWZ_qNsLXDSSF_Rk6hpa1zqgNnvpnK_T8_k,4781
142
148
  pvlib/tests/iotools/test_crn.py,sha256=qLEqJ5zHQFeGBqtxet42YNNLOU-qsua3wzfDDi3zVcc,3980
143
- pvlib/tests/iotools/test_ecmwf_macc.py,sha256=yw3yd2nNrOA9FA2l6OqK1OG0K4-MQTLEV5e-2NAxuz0,5800
144
149
  pvlib/tests/iotools/test_epw.py,sha256=7JkDYhKEE6yWZSyvDaHMFp_Nt5dZOT5vzyP3Sg-NlOg,652
145
- pvlib/tests/iotools/test_midc.py,sha256=GfQcrNw7_xnkVRwqTBQ3DpFhqcMUcPYqxyyC661uQKU,2872
146
- pvlib/tests/iotools/test_psm3.py,sha256=-RlUwc7tWwXKX9cWVSihjemu5a76SZMixdJkrbo3jlc,8767
147
- pvlib/tests/iotools/test_pvgis.py,sha256=1uR-E7_rl46s0DcDI4zQcpJw6Nc0GyHFboTyzi1q0eA,27091
148
- pvlib/tests/iotools/test_sodapro.py,sha256=vSHPhQxXS2TQMopFphtbavr71YbuWtq91TC-MlljBpY,14280
150
+ pvlib/tests/iotools/test_midc.py,sha256=D86u7UxhoYsIXcKoE4yJI46tiC75xnwArmwRCQJmvHY,2878
151
+ pvlib/tests/iotools/test_psm3.py,sha256=oQopiT9uudQdN2yMBN35Cu-ixEsUtWINY5OqvnfK_qE,8925
152
+ pvlib/tests/iotools/test_pvgis.py,sha256=51Jdngy3mwEE4utD9Io0G5ZvwRzQMumJ60x_shbR5ps,27376
153
+ pvlib/tests/iotools/test_sodapro.py,sha256=z35PsJz5-pldBLTeRd6yABUbFmrD1q71C_ABxFE6Rzc,14287
149
154
  pvlib/tests/iotools/test_solrad.py,sha256=yKT7t3w9ajaKXfDyvf4M7KXvzvGGrYNgElK7LSozBt0,5018
150
- pvlib/tests/iotools/test_srml.py,sha256=s7iZV6nroLbOzD68wDSBV7FEuS4Jbc_xpXnv33iAuo4,3138
155
+ pvlib/tests/iotools/test_srml.py,sha256=tlQeOb4Zm7t8ZmTuqk0vQdoeVKJa_ukg6iOKU03s6NY,6068
151
156
  pvlib/tests/iotools/test_surfrad.py,sha256=fQ8iFFqdvwXO2B0bdAphJIaP9_n94EhV_gNthzz-NQE,2602
152
- pvlib/tests/iotools/test_tmy.py,sha256=fMbnLHFyQEjjHP3d9R1oSsFifFoWejL4NTWSZIG0O58,3685
157
+ pvlib/tests/iotools/test_tmy.py,sha256=LW6CgSkfO8I5W3iAJezST3M2RRGJLfoJ5bMwUyhFbWU,5106
153
158
  pvlib/tests/ivtools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
154
- pvlib/tests/ivtools/test_sde.py,sha256=WADk0hS31JIXxyBrI9lNmqyX_ttdDX71cCZh3muQtmw,14051
155
- pvlib/tests/ivtools/test_sdm.py,sha256=S5krujV5pVRuvvKBgjnJjHa4PLQMBsDqx6w7Q8wvK5Y,16068
156
- pvlib/tests/ivtools/test_utils.py,sha256=29GVonsG68DfjaLBhIv_NDeWm5gkbndFKg15t74tEkY,3421
157
- pvlib-0.9.4a1.dist-info/AUTHORS.md,sha256=m4aXvg1O98WC92Ncmw2PftxR3EIJ2FS3hlW5kWkCGp8,1239
158
- pvlib-0.9.4a1.dist-info/LICENSE,sha256=MpqcQB67TGLU0ryXiADgyoQMwN4n9VC9Bt4WU2n0PB4,1565
159
- pvlib-0.9.4a1.dist-info/METADATA,sha256=geqV0Fi4dOLNFhknQg4h1uYufRtNiUrl6-McTTYO_Ek,4303
160
- pvlib-0.9.4a1.dist-info/WHEEL,sha256=00yskusixUoUt5ob_CiUp6LsnN5lqzTJpoqOFg_FVIc,92
161
- pvlib-0.9.4a1.dist-info/top_level.txt,sha256=eq9CH6YXUc3Fh3dyQ5hQXoGYfSm1SYEAlMygyR22MgE,6
162
- pvlib-0.9.4a1.dist-info/RECORD,,
159
+ pvlib/tests/ivtools/test_sde.py,sha256=dBJkk9tWskwc6Iyoziar9MoZESrOSkepOk51g5QOy1I,13844
160
+ pvlib/tests/ivtools/test_sdm.py,sha256=5ioqsEJJE-JCSCGRLXj1zCuJzGIPNY622GyflJMU_MM,16406
161
+ pvlib/tests/ivtools/test_utils.py,sha256=-BPEUgB5aCkJOv-apRkjeg0IraZ1Ebf5SmObk4Zusz4,6905
162
+ pvlib-0.10.0.dist-info/AUTHORS.md,sha256=Fxk4p_lXlMeQ6g2A1-7oPrgpULDxuJuC9Ebc-3yyj_o,1474
163
+ pvlib-0.10.0.dist-info/LICENSE,sha256=oC4S3araPPDV292K_91XfC7sZAdYqVhCowT3UTuMC-Q,1622
164
+ pvlib-0.10.0.dist-info/METADATA,sha256=-ESqzYjfT09flxIfUytrv4_jIq6TAJ3hMivc9RgivjI,3879
165
+ pvlib-0.10.0.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
166
+ pvlib-0.10.0.dist-info/top_level.txt,sha256=eq9CH6YXUc3Fh3dyQ5hQXoGYfSm1SYEAlMygyR22MgE,6
167
+ pvlib-0.10.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.38.1)
2
+ Generator: bdist_wheel (0.40.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5