pvlib 0.11.0a1__py3-none-any.whl → 0.11.2__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/_deprecation.py +73 -0
- pvlib/atmosphere.py +236 -1
- pvlib/bifacial/__init__.py +4 -4
- pvlib/bifacial/loss_models.py +163 -0
- pvlib/clearsky.py +53 -51
- pvlib/data/pvgis_tmy_meta.json +32 -93
- pvlib/data/pvgis_tmy_test.csv +8761 -0
- pvlib/data/tmy_45.000_8.000_2005_2023.csv +8789 -0
- pvlib/data/tmy_45.000_8.000_2005_2023.epw +8768 -0
- pvlib/data/tmy_45.000_8.000_2005_2023.json +1 -0
- pvlib/data/tmy_45.000_8.000_2005_2023.txt +8761 -0
- pvlib/data/tmy_45.000_8.000_userhorizon.json +1 -1
- pvlib/iam.py +4 -4
- pvlib/iotools/midc.py +1 -1
- pvlib/iotools/pvgis.py +39 -13
- pvlib/irradiance.py +237 -173
- pvlib/ivtools/sdm.py +75 -52
- pvlib/location.py +5 -5
- pvlib/modelchain.py +1 -1
- pvlib/pvsystem.py +134 -86
- pvlib/shading.py +8 -8
- pvlib/singlediode.py +1 -1
- pvlib/solarposition.py +101 -80
- pvlib/spa.py +28 -24
- pvlib/spectrum/__init__.py +9 -4
- pvlib/spectrum/irradiance.py +273 -0
- pvlib/spectrum/mismatch.py +118 -508
- pvlib/spectrum/response.py +280 -0
- pvlib/spectrum/spectrl2.py +18 -17
- pvlib/temperature.py +49 -3
- pvlib/tests/bifacial/test_losses_models.py +54 -0
- pvlib/tests/iotools/test_pvgis.py +58 -12
- pvlib/tests/ivtools/test_sdm.py +23 -1
- pvlib/tests/spectrum/__init__.py +0 -0
- pvlib/tests/spectrum/conftest.py +40 -0
- pvlib/tests/spectrum/test_irradiance.py +138 -0
- pvlib/tests/{test_spectrum.py → spectrum/test_mismatch.py} +32 -306
- pvlib/tests/spectrum/test_response.py +124 -0
- pvlib/tests/spectrum/test_spectrl2.py +72 -0
- pvlib/tests/test__deprecation.py +97 -0
- pvlib/tests/test_atmosphere.py +218 -0
- pvlib/tests/test_clearsky.py +44 -26
- pvlib/tests/test_conftest.py +0 -44
- pvlib/tests/test_irradiance.py +62 -16
- pvlib/tests/test_pvsystem.py +17 -1
- pvlib/tests/test_solarposition.py +117 -36
- pvlib/tests/test_spa.py +30 -1
- pvlib/tools.py +26 -2
- pvlib/tracking.py +53 -47
- {pvlib-0.11.0a1.dist-info → pvlib-0.11.2.dist-info}/METADATA +34 -31
- {pvlib-0.11.0a1.dist-info → pvlib-0.11.2.dist-info}/RECORD +55 -47
- {pvlib-0.11.0a1.dist-info → pvlib-0.11.2.dist-info}/WHEEL +1 -1
- pvlib/data/aod550_tcwv_20121101_test.nc +0 -0
- pvlib/data/pvgis_tmy_test.dat +0 -8761
- pvlib/data/tmy_45.000_8.000_2005_2016.csv +0 -8789
- pvlib/data/tmy_45.000_8.000_2005_2016.epw +0 -8768
- pvlib/data/tmy_45.000_8.000_2005_2016.json +0 -1
- pvlib/data/tmy_45.000_8.000_2005_2016.txt +0 -8761
- pvlib/data/variables_style_rules.csv +0 -55
- {pvlib-0.11.0a1.dist-info → pvlib-0.11.2.dist-info}/AUTHORS.md +0 -0
- {pvlib-0.11.0a1.dist-info → pvlib-0.11.2.dist-info}/LICENSE +0 -0
- {pvlib-0.11.0a1.dist-info → pvlib-0.11.2.dist-info}/top_level.txt +0 -0
pvlib/tracking.py
CHANGED
|
@@ -13,20 +13,20 @@ def singleaxis(apparent_zenith, apparent_azimuth,
|
|
|
13
13
|
Determine the rotation angle of a single-axis tracker when given particular
|
|
14
14
|
solar zenith and azimuth angles.
|
|
15
15
|
|
|
16
|
-
See [1]_ for details about the equations. Backtracking may be
|
|
17
|
-
|
|
16
|
+
See [1]_ and [2]_ for details about the equations. Backtracking may be
|
|
17
|
+
specified, in which case a ground coverage ratio is required.
|
|
18
18
|
|
|
19
19
|
Rotation angle is determined in a right-handed coordinate system. The
|
|
20
|
-
tracker
|
|
21
|
-
90 degrees clockwise from the y-axis and parallel to the Earth's
|
|
22
|
-
and the positive z-axis is normal to both x
|
|
23
|
-
Rotation angle
|
|
24
|
-
in the x, y, z coordinate system and indicates
|
|
25
|
-
horizontal. For example, if tracker
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
facing east.
|
|
20
|
+
tracker ``axis_azimuth`` defines the positive y-axis, the positive x-axis
|
|
21
|
+
is 90 degrees clockwise from the y-axis and parallel to the Earth's
|
|
22
|
+
surface, and the positive z-axis is normal to both x and y-axes and
|
|
23
|
+
oriented skyward. Rotation angle ``tracker_theta`` is a right-handed
|
|
24
|
+
rotation around the y-axis in the x, y, z coordinate system and indicates
|
|
25
|
+
tracker position relative to horizontal. For example, if tracker
|
|
26
|
+
``axis_azimuth`` is 180 (oriented south) and ``axis_tilt`` is zero, then a
|
|
27
|
+
``tracker_theta`` of zero is horizontal, a ``tracker_theta`` of 30 degrees
|
|
28
|
+
is a rotation of 30 degrees towards the west, and a ``tracker_theta`` of
|
|
29
|
+
-90 degrees is a rotation to the vertical plane facing east.
|
|
30
30
|
|
|
31
31
|
Parameters
|
|
32
32
|
----------
|
|
@@ -39,7 +39,7 @@ def singleaxis(apparent_zenith, apparent_azimuth,
|
|
|
39
39
|
axis_tilt : float, default 0
|
|
40
40
|
The tilt of the axis of rotation (i.e, the y-axis defined by
|
|
41
41
|
``axis_azimuth``) with respect to horizontal.
|
|
42
|
-
``axis_tilt`` must be >= 0 and <= 90. [
|
|
42
|
+
``axis_tilt`` must be >= 0 and <= 90. [degrees]
|
|
43
43
|
|
|
44
44
|
axis_azimuth : float, default 0
|
|
45
45
|
A value denoting the compass direction along which the axis of
|
|
@@ -53,13 +53,13 @@ def singleaxis(apparent_zenith, apparent_azimuth,
|
|
|
53
53
|
opposite of the maximum angle. If a tuple of (min_angle, max_angle) is
|
|
54
54
|
provided, it represents both the minimum and maximum rotation angles.
|
|
55
55
|
|
|
56
|
-
A rotation to
|
|
56
|
+
A rotation to ``max_angle`` is a counter-clockwise rotation about the
|
|
57
57
|
y-axis of the tracker coordinate system. For example, for a tracker
|
|
58
|
-
with
|
|
59
|
-
is towards the west, and a rotation toward
|
|
60
|
-
opposite direction, toward the east. Hence a max_angle
|
|
61
|
-
(equivalent to max_angle = (-180, 180)) allows the
|
|
62
|
-
its full rotation capability.
|
|
58
|
+
with ``axis_azimuth`` oriented to the south, a rotation to
|
|
59
|
+
``max_angle`` is towards the west, and a rotation toward ``-max_angle``
|
|
60
|
+
is in the opposite direction, toward the east. Hence, a ``max_angle``
|
|
61
|
+
of 180 degrees (equivalent to max_angle = (-180, 180)) allows the
|
|
62
|
+
tracker to achieve its full rotation capability.
|
|
63
63
|
|
|
64
64
|
backtrack : bool, default True
|
|
65
65
|
Controls whether the tracker has the capability to "backtrack"
|
|
@@ -67,23 +67,23 @@ def singleaxis(apparent_zenith, apparent_azimuth,
|
|
|
67
67
|
capability. True denotes backtrack capability.
|
|
68
68
|
|
|
69
69
|
gcr : float, default 2.0/7.0
|
|
70
|
-
A value denoting the ground coverage ratio of a tracker system
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
70
|
+
A value denoting the ground coverage ratio of a tracker system that
|
|
71
|
+
utilizes backtracking; i.e. the ratio between the PV array surface area
|
|
72
|
+
to the total ground area. A tracker system with modules 2 meters wide,
|
|
73
|
+
centered on the tracking axis, with 6 meters between the tracking axes
|
|
74
|
+
has a ``gcr`` of 2/6=0.333. If ``gcr`` is not provided, a ``gcr`` of
|
|
75
|
+
2/7 is default. ``gcr`` must be <=1.
|
|
76
76
|
|
|
77
77
|
cross_axis_tilt : float, default 0.0
|
|
78
78
|
The angle, relative to horizontal, of the line formed by the
|
|
79
79
|
intersection between the slope containing the tracker axes and a plane
|
|
80
|
-
perpendicular to the tracker axes.
|
|
81
|
-
using a right-handed convention. For example, trackers with
|
|
82
|
-
azimuth of 180 degrees (heading south) will have a negative
|
|
83
|
-
tilt if the tracker axes plane slopes down to the east and
|
|
84
|
-
cross-axis tilt if the tracker axes plane slopes down to the
|
|
85
|
-
:func:`~pvlib.tracking.calc_cross_axis_tilt` to calculate
|
|
86
|
-
|
|
80
|
+
perpendicular to the tracker axes. The cross-axis tilt should be
|
|
81
|
+
specified using a right-handed convention. For example, trackers with
|
|
82
|
+
axis azimuth of 180 degrees (heading south) will have a negative
|
|
83
|
+
cross-axis tilt if the tracker axes plane slopes down to the east and
|
|
84
|
+
positive cross-axis tilt if the tracker axes plane slopes down to the
|
|
85
|
+
west. Use :func:`~pvlib.tracking.calc_cross_axis_tilt` to calculate
|
|
86
|
+
``cross_axis_tilt``. [degrees]
|
|
87
87
|
|
|
88
88
|
Returns
|
|
89
89
|
-------
|
|
@@ -107,9 +107,11 @@ def singleaxis(apparent_zenith, apparent_azimuth,
|
|
|
107
107
|
|
|
108
108
|
References
|
|
109
109
|
----------
|
|
110
|
-
.. [1]
|
|
110
|
+
.. [1] Anderson, K., and Mikofski, M., "Slope-Aware Backtracking for
|
|
111
111
|
Single-Axis Trackers", Technical Report NREL/TP-5K00-76626, July 2020.
|
|
112
112
|
https://www.nrel.gov/docs/fy20osti/76626.pdf
|
|
113
|
+
.. [2] Lorenzo, E., Narvarte, L., and Muñoz, J. (2011). Tracking and
|
|
114
|
+
back-tracking 19(6), 747–753. :doi:`10.1002/pip.1085`
|
|
113
115
|
"""
|
|
114
116
|
|
|
115
117
|
# MATLAB to Python conversion by
|
|
@@ -127,15 +129,16 @@ def singleaxis(apparent_zenith, apparent_azimuth,
|
|
|
127
129
|
if apparent_azimuth.ndim > 1 or apparent_zenith.ndim > 1:
|
|
128
130
|
raise ValueError('Input dimensions must not exceed 1')
|
|
129
131
|
|
|
130
|
-
# The ideal tracking angle
|
|
131
|
-
# vector (xp, yp, zp) in the (x, z) plane, which is normal to
|
|
132
|
-
# contains the axis of rotation.
|
|
133
|
-
# horizontal. Here, our convention is that a clockwise
|
|
134
|
-
# positive, to view rotation angles in the same frame of
|
|
135
|
-
# azimuth. For example, for a system with tracking
|
|
136
|
-
# rotation toward the east is negative, and a
|
|
137
|
-
# positive. This is a right-handed rotation
|
|
138
|
-
|
|
132
|
+
# The ideal tracking angle, omega_ideal, is the rotation to place the sun
|
|
133
|
+
# position vector (xp, yp, zp) in the (x, z) plane, which is normal to
|
|
134
|
+
# the panel and contains the axis of rotation. omega_ideal=0 indicates
|
|
135
|
+
# that the panel is horizontal. Here, our convention is that a clockwise
|
|
136
|
+
# rotation is positive, to view rotation angles in the same frame of
|
|
137
|
+
# reference as azimuth. For example, for a system with tracking
|
|
138
|
+
# axis oriented south, a rotation toward the east is negative, and a
|
|
139
|
+
# rotation to the west is positive. This is a right-handed rotation
|
|
140
|
+
# around the tracker y-axis.
|
|
141
|
+
omega_ideal = shading.projected_solar_zenith_angle(
|
|
139
142
|
axis_tilt=axis_tilt,
|
|
140
143
|
axis_azimuth=axis_azimuth,
|
|
141
144
|
solar_zenith=apparent_zenith,
|
|
@@ -144,7 +147,7 @@ def singleaxis(apparent_zenith, apparent_azimuth,
|
|
|
144
147
|
|
|
145
148
|
# filter for sun above panel horizon
|
|
146
149
|
zen_gt_90 = apparent_zenith > 90
|
|
147
|
-
|
|
150
|
+
omega_ideal[zen_gt_90] = np.nan
|
|
148
151
|
|
|
149
152
|
# Account for backtracking
|
|
150
153
|
if backtrack:
|
|
@@ -153,19 +156,22 @@ def singleaxis(apparent_zenith, apparent_azimuth,
|
|
|
153
156
|
axes_distance = 1/(gcr * cosd(cross_axis_tilt))
|
|
154
157
|
|
|
155
158
|
# NOTE: account for rare angles below array, see GH 824
|
|
156
|
-
temp = np.abs(axes_distance * cosd(
|
|
159
|
+
temp = np.abs(axes_distance * cosd(omega_ideal - cross_axis_tilt))
|
|
157
160
|
|
|
158
161
|
# backtrack angle using [1], Eq. 14
|
|
159
162
|
with np.errstate(invalid='ignore'):
|
|
160
|
-
|
|
163
|
+
omega_correction = np.degrees(
|
|
164
|
+
-np.sign(omega_ideal)*np.arccos(temp))
|
|
161
165
|
|
|
162
166
|
# NOTE: in the middle of the day, arccos(temp) is out of range because
|
|
163
167
|
# there's no row-to-row shade to avoid, & backtracking is unnecessary
|
|
164
168
|
# [1], Eqs. 15-16
|
|
165
169
|
with np.errstate(invalid='ignore'):
|
|
166
|
-
tracker_theta =
|
|
170
|
+
tracker_theta = omega_ideal + np.where(
|
|
171
|
+
temp < 1, omega_correction,
|
|
172
|
+
0)
|
|
167
173
|
else:
|
|
168
|
-
tracker_theta =
|
|
174
|
+
tracker_theta = omega_ideal
|
|
169
175
|
|
|
170
176
|
# NOTE: max_angle defined relative to zero-point rotation, not the
|
|
171
177
|
# system-plane normal
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pvlib
|
|
3
|
-
Version: 0.11.
|
|
3
|
+
Version: 0.11.2
|
|
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>
|
|
@@ -15,44 +15,47 @@ Classifier: Intended Audience :: Science/Research
|
|
|
15
15
|
Classifier: Programming Language :: Python
|
|
16
16
|
Classifier: Programming Language :: Python :: 3
|
|
17
17
|
Classifier: Topic :: Scientific/Engineering
|
|
18
|
-
Requires-Python: >=3.
|
|
18
|
+
Requires-Python: >=3.9
|
|
19
19
|
Description-Content-Type: text/x-rst
|
|
20
20
|
License-File: LICENSE
|
|
21
21
|
License-File: AUTHORS.md
|
|
22
|
-
Requires-Dist: numpy
|
|
23
|
-
Requires-Dist: pandas
|
|
22
|
+
Requires-Dist: numpy>=1.19.3
|
|
23
|
+
Requires-Dist: pandas>=1.3.0
|
|
24
24
|
Requires-Dist: pytz
|
|
25
25
|
Requires-Dist: requests
|
|
26
|
-
Requires-Dist: scipy
|
|
26
|
+
Requires-Dist: scipy>=1.6.0
|
|
27
27
|
Requires-Dist: h5py
|
|
28
|
-
Provides-Extra: all
|
|
29
|
-
Requires-Dist: pvlib[doc,optional,test] ; extra == 'all'
|
|
30
|
-
Provides-Extra: doc
|
|
31
|
-
Requires-Dist: ipython ; extra == 'doc'
|
|
32
|
-
Requires-Dist: matplotlib ; extra == 'doc'
|
|
33
|
-
Requires-Dist: sphinx ==4.5.0 ; extra == 'doc'
|
|
34
|
-
Requires-Dist: pydata-sphinx-theme ==0.8.1 ; extra == 'doc'
|
|
35
|
-
Requires-Dist: sphinx-gallery ; extra == 'doc'
|
|
36
|
-
Requires-Dist: docutils ==0.15.2 ; extra == 'doc'
|
|
37
|
-
Requires-Dist: pillow ; extra == 'doc'
|
|
38
|
-
Requires-Dist: sphinx-toggleprompt >=0.0.5 ; extra == 'doc'
|
|
39
|
-
Requires-Dist: solarfactors ; extra == 'doc'
|
|
40
28
|
Provides-Extra: optional
|
|
41
|
-
Requires-Dist: cython
|
|
42
|
-
Requires-Dist: ephem
|
|
43
|
-
Requires-Dist: nrel-pysam
|
|
44
|
-
Requires-Dist: numba
|
|
45
|
-
Requires-Dist: solarfactors
|
|
46
|
-
Requires-Dist: statsmodels
|
|
29
|
+
Requires-Dist: cython; extra == "optional"
|
|
30
|
+
Requires-Dist: ephem; extra == "optional"
|
|
31
|
+
Requires-Dist: nrel-pysam; extra == "optional"
|
|
32
|
+
Requires-Dist: numba>=0.17.0; extra == "optional"
|
|
33
|
+
Requires-Dist: solarfactors; extra == "optional"
|
|
34
|
+
Requires-Dist: statsmodels; extra == "optional"
|
|
35
|
+
Provides-Extra: doc
|
|
36
|
+
Requires-Dist: ipython; extra == "doc"
|
|
37
|
+
Requires-Dist: pickleshare; extra == "doc"
|
|
38
|
+
Requires-Dist: matplotlib; extra == "doc"
|
|
39
|
+
Requires-Dist: sphinx==7.3.7; extra == "doc"
|
|
40
|
+
Requires-Dist: pydata-sphinx-theme==0.15.4; extra == "doc"
|
|
41
|
+
Requires-Dist: sphinx-gallery; extra == "doc"
|
|
42
|
+
Requires-Dist: docutils==0.21; extra == "doc"
|
|
43
|
+
Requires-Dist: pillow; extra == "doc"
|
|
44
|
+
Requires-Dist: sphinx-toggleprompt==0.5.2; extra == "doc"
|
|
45
|
+
Requires-Dist: sphinx-favicon; extra == "doc"
|
|
46
|
+
Requires-Dist: solarfactors; extra == "doc"
|
|
47
|
+
Requires-Dist: sphinx-hoverxref; extra == "doc"
|
|
47
48
|
Provides-Extra: test
|
|
48
|
-
Requires-Dist: pytest
|
|
49
|
-
Requires-Dist: pytest-cov
|
|
50
|
-
Requires-Dist: pytest-mock
|
|
51
|
-
Requires-Dist: requests-mock
|
|
52
|
-
Requires-Dist: pytest-timeout
|
|
53
|
-
Requires-Dist: pytest-rerunfailures
|
|
54
|
-
Requires-Dist: pytest-remotedata
|
|
55
|
-
Requires-Dist: packaging
|
|
49
|
+
Requires-Dist: pytest; extra == "test"
|
|
50
|
+
Requires-Dist: pytest-cov; extra == "test"
|
|
51
|
+
Requires-Dist: pytest-mock; extra == "test"
|
|
52
|
+
Requires-Dist: requests-mock; extra == "test"
|
|
53
|
+
Requires-Dist: pytest-timeout; extra == "test"
|
|
54
|
+
Requires-Dist: pytest-rerunfailures; extra == "test"
|
|
55
|
+
Requires-Dist: pytest-remotedata; extra == "test"
|
|
56
|
+
Requires-Dist: packaging; extra == "test"
|
|
57
|
+
Provides-Extra: all
|
|
58
|
+
Requires-Dist: pvlib[doc,optional,test]; extra == "all"
|
|
56
59
|
|
|
57
60
|
pvlib python is a community developed toolbox that provides a set of
|
|
58
61
|
functions and classes for simulating the performance of photovoltaic
|
|
@@ -1,29 +1,30 @@
|
|
|
1
1
|
pvlib/__init__.py,sha256=3uBDCDeNhPboYnHujJ1oUWjTqoaVph9aXjKVGTaU5C4,498
|
|
2
|
-
pvlib/_deprecation.py,sha256=
|
|
2
|
+
pvlib/_deprecation.py,sha256=pBZkJGV1r3m6q6ymqbQcT__t_toUkDQgPYYCK_Yu1so,15794
|
|
3
3
|
pvlib/albedo.py,sha256=MqrkDztnF6VWaM7W28AGGEgCyAK6X13bDvPk9YEaimU,6205
|
|
4
|
-
pvlib/atmosphere.py,sha256=
|
|
5
|
-
pvlib/clearsky.py,sha256=
|
|
6
|
-
pvlib/iam.py,sha256=
|
|
4
|
+
pvlib/atmosphere.py,sha256=ONtgNM7tjVBVjkKiwTokRFCl2qFwpPrCw8nDRAQW5Ec,26486
|
|
5
|
+
pvlib/clearsky.py,sha256=9ReN3IGJHlJv_3bnxWEQUVZkww-klafsqqE5A-jelBQ,38553
|
|
6
|
+
pvlib/iam.py,sha256=zL0YzOaMA2Twbl0JJ0y5nxoxjmaOb9OQGH_Z1MVGcIw,44224
|
|
7
7
|
pvlib/inverter.py,sha256=ZpSv3cjt-Qm_JundL_jkvhCUd3iGjmlKcnNJeJqA2Qw,19127
|
|
8
|
-
pvlib/irradiance.py,sha256=
|
|
9
|
-
pvlib/location.py,sha256=
|
|
10
|
-
pvlib/modelchain.py,sha256=
|
|
8
|
+
pvlib/irradiance.py,sha256=oSNzvrHcfVVLzUCxC6g4SsjjY89p14tBOsvt-2n84ag,147021
|
|
9
|
+
pvlib/location.py,sha256=uPTEOTkjmeELB7hdwMrwrRSVoWkqafqC6NWwzgiDYKM,15729
|
|
10
|
+
pvlib/modelchain.py,sha256=M2WXN4sOBZ2Vu1AZnRQjF-mbEh6Ee2LhcS7UmDA6bL4,73808
|
|
11
11
|
pvlib/pvarray.py,sha256=r60sGTxFNlPiFQndusCJmlEIPX0dv9_7ozKw8zxh7IM,12677
|
|
12
|
-
pvlib/pvsystem.py,sha256=
|
|
12
|
+
pvlib/pvsystem.py,sha256=O9mXc-8MWsp4FUWtIAqbtD0miVunVQoNRqXnXg3uxUU,110132
|
|
13
13
|
pvlib/scaling.py,sha256=SsQEmM4f4O1wC7e0amEV4SgaRTBX8nG5IiSV9Xs0i5o,10983
|
|
14
|
-
pvlib/shading.py,sha256=
|
|
15
|
-
pvlib/singlediode.py,sha256=
|
|
14
|
+
pvlib/shading.py,sha256=S1Av-oskqxQTyLKkmaVr854bve3StfbP_yF5isHF5zI,26172
|
|
15
|
+
pvlib/singlediode.py,sha256=wcq7QE68CNy04gOHzP-vrdYfZh_QHJcIzkDZXSkZsWQ,35399
|
|
16
16
|
pvlib/snow.py,sha256=LYFEpU5AnP82o6q5v6kQfgopkYtHO-aEyYFV9knpNvM,12764
|
|
17
17
|
pvlib/soiling.py,sha256=zDJ3N0uyeS1CoO0mxSdG16q2FCBLZSHbujJHgish54U,8799
|
|
18
|
-
pvlib/solarposition.py,sha256=
|
|
19
|
-
pvlib/spa.py,sha256=
|
|
20
|
-
pvlib/temperature.py,sha256=
|
|
21
|
-
pvlib/tools.py,sha256=
|
|
22
|
-
pvlib/tracking.py,sha256=
|
|
18
|
+
pvlib/solarposition.py,sha256=EZ6tCrz64fLX8-7xTBLwu6JnvjXStFCx2a8Xo1nM6Eo,51200
|
|
19
|
+
pvlib/spa.py,sha256=rXdizMpf2WEe-eKpseN_lf5MWzFihhayrT6E6h5fkgI,44847
|
|
20
|
+
pvlib/temperature.py,sha256=JmLUNkSlldlpSVu8dkRm_HRaSsA2QI1Li13AOCJU_cc,57886
|
|
21
|
+
pvlib/tools.py,sha256=bcpkg8XavIufwGdtLI1s2Et93o-csMRwJjawjvYLIRg,13892
|
|
22
|
+
pvlib/tracking.py,sha256=YAgTSpT21GxOeTpow_cvD5njqJalwl-nHIr9KxuBHsQ,16152
|
|
23
23
|
pvlib/transformer.py,sha256=FXyYaPPooFXAvAP3Ib5vENDVJocbo6kUuBAPzQdimHo,3437
|
|
24
24
|
pvlib/version.py,sha256=0CONzyOSN34Jgbaj9JzemFuaEnbRON_yxp-ah6_KxxQ,165
|
|
25
|
-
pvlib/bifacial/__init__.py,sha256=
|
|
25
|
+
pvlib/bifacial/__init__.py,sha256=64cyMvdne1gJJ-tSEetheorxEeMm-TOIad1u-0DSucA,460
|
|
26
26
|
pvlib/bifacial/infinite_sheds.py,sha256=rbiluCon6Tqpa_FizUfk5zBc6tH3ubk7xRqRAXp2Xq0,23051
|
|
27
|
+
pvlib/bifacial/loss_models.py,sha256=RDl9TcKqFoYXnE3P88DjLVFODh2mHdKEFUUH-BnvH7E,5944
|
|
27
28
|
pvlib/bifacial/pvfactors.py,sha256=QJXqjok4UcaUToNs6eR5ZDMsVf3HHT2AqW2u36hOOSI,5437
|
|
28
29
|
pvlib/bifacial/utils.py,sha256=Q2KSzn-vltO13QHYEfLVEWkTqed8Q8f_Eu4tlyrK2Ts,14542
|
|
29
30
|
pvlib/data/12839.tm2,sha256=6v86FhwMJeUJIEx8Mj9Rqp_OqmeaQ3rpObunQVaM6ss,1261501
|
|
@@ -47,7 +48,6 @@ pvlib/data/PVsyst_demo_model.csv,sha256=HR3W-DYWjQBo5oYnUdRj8KzaawwyCTjbTTDxA4Jd
|
|
|
47
48
|
pvlib/data/SRML-day-EUPO1801.txt,sha256=66D1mrvtC5TAsKY-8-BkSzDNJzXfgBmC5Y51KgR3kpk,44305
|
|
48
49
|
pvlib/data/abq19056.dat,sha256=fgU9VMDhQEZUXaHGuXdykTUdtCbmXy-CTsBVC5AkEmY,558
|
|
49
50
|
pvlib/data/adr-library-cec-inverters-2019-03-05.csv,sha256=6yNlInxEMmvyUEGnYEJQFB4NpDqE0qoNWBA3frRStXs,1147612
|
|
50
|
-
pvlib/data/aod550_tcwv_20121101_test.nc,sha256=zFbh9mLRA6BrCmC2coDJU-cOvE34qbkDBZM4pjo-kAc,236128
|
|
51
51
|
pvlib/data/bishop88_numerical_precision.csv,sha256=SDuzjsjNf_vNwapKvy3hb2b4lz2MPTIyDIMWCAgQXDk,17587
|
|
52
52
|
pvlib/data/bsrn-lr0100-pay0616.dat,sha256=MoNy_9WqyOW_m5XLTlWD9b4kBYApWOnYC7tQRdNc5UY,5641870
|
|
53
53
|
pvlib/data/bsrn-pay0616.dat.gz,sha256=SzDl-qzQa5eG0VR0BmZ6F-OSwrkmsp0WvIez82ufTgw,4327505
|
|
@@ -72,8 +72,8 @@ pvlib/data/precise_iv_curves_parameter_sets1.csv,sha256=Ko34GG5IUJkcwoRJIR5bJQps
|
|
|
72
72
|
pvlib/data/precise_iv_curves_parameter_sets2.csv,sha256=8bDzjzQFKte1hN1APUimEUCcaurgwCeOgi2ns_KhqX8,1059
|
|
73
73
|
pvlib/data/pvgis_hourly_Timeseries_45.000_8.000_SA2_10kWp_CIS_5_2a_2013_2014.json,sha256=KgCDSeiq33_gGoPWpC9eEMfZeCM1f9R36x1HJ9drTA4,3466
|
|
74
74
|
pvlib/data/pvgis_hourly_Timeseries_45.000_8.000_SA_30deg_0deg_2016_2016.csv,sha256=vBTKmB2WC9Y_QydX-oMXqahaEYtTKR1cVri4TU3asuA,1272
|
|
75
|
-
pvlib/data/pvgis_tmy_meta.json,sha256=
|
|
76
|
-
pvlib/data/pvgis_tmy_test.
|
|
75
|
+
pvlib/data/pvgis_tmy_meta.json,sha256=0GY4iZKgqWh5V1aFdYqhTEyQuEDH7OURfmLf6oWgvp4,1813
|
|
76
|
+
pvlib/data/pvgis_tmy_test.csv,sha256=W39OX2fKdL5zMStOTVGAl0cb2A90BzbwLqmdmpmME-c,484929
|
|
77
77
|
pvlib/data/pvwatts_8760_rackmount.csv,sha256=JwVBRW1f-RvhQJK9Dle4Kac51x2o8qEGZJl-ha-PQDA,329170
|
|
78
78
|
pvlib/data/pvwatts_8760_roofmount.csv,sha256=umLN6Wa3lMGHjPv3sN-djaqisEdKZhqHVHOFQboF8Uo,329205
|
|
79
79
|
pvlib/data/sam-library-cec-inverters-2019-03-05.csv,sha256=wZIlLw1hIE31j7DflVFKKqUp2ItFojbbfxZzdmHWFtg,568421
|
|
@@ -88,21 +88,20 @@ pvlib/data/test_psm3_2019_5min.csv,sha256=2_XLRC7O7KVMBDOcCbsnKyQdWYh8eq2pIrGd6K
|
|
|
88
88
|
pvlib/data/test_psm3_tmy-2017.csv,sha256=s3X0FWEVz_sbHeDZQZQ0aigvQRJMTCMR0W2JY1tw53o,470325
|
|
89
89
|
pvlib/data/test_read_psm3.csv,sha256=_dNpdqysKoheqBhnli6vc3ZMftZscx9pnU0p-rhitWQ,1781292
|
|
90
90
|
pvlib/data/test_read_pvgis_horizon.csv,sha256=LhPsozGCc3_VN3HEoy9-kVhC87uRLt28KPzjJAzCFYY,431
|
|
91
|
-
pvlib/data/tmy_45.000_8.
|
|
92
|
-
pvlib/data/tmy_45.000_8.
|
|
93
|
-
pvlib/data/tmy_45.000_8.
|
|
94
|
-
pvlib/data/tmy_45.000_8.
|
|
95
|
-
pvlib/data/tmy_45.000_8.000_userhorizon.json,sha256=
|
|
96
|
-
pvlib/data/variables_style_rules.csv,sha256=_BD0EDdYu4ZhJd-D9Ya7Z8ZJdB3ruM5ggoKOA394LlY,2532
|
|
91
|
+
pvlib/data/tmy_45.000_8.000_2005_2023.csv,sha256=IAw8yFOlFP27YOGJG4IJwsO7Lrl2EVl43D2jPF5XhbQ,572792
|
|
92
|
+
pvlib/data/tmy_45.000_8.000_2005_2023.epw,sha256=ELtZNyxEL5F_ZxLm14bFrZZvTfYNP-OE_pPgVoqdlis,1850700
|
|
93
|
+
pvlib/data/tmy_45.000_8.000_2005_2023.json,sha256=MDsumoNqgGH0ZNk4Ky1mhSS1R4rDPLnF3C_dTaupfFA,1437283
|
|
94
|
+
pvlib/data/tmy_45.000_8.000_2005_2023.txt,sha256=0VpAKFPx2riCVytDPgEmqqJ1nyMEU9T4hHMAd64N76U,572118
|
|
95
|
+
pvlib/data/tmy_45.000_8.000_userhorizon.json,sha256=FIFGUzlBYA5koKtneEnyCUPcQ1mGp9P129TnIRE2krc,1430257
|
|
97
96
|
pvlib/iotools/__init__.py,sha256=tVa9xjsWVMO5hC_-EEMzgXoz6XxKKCU5r6AnoBSpOW0,2219
|
|
98
97
|
pvlib/iotools/acis.py,sha256=nzuH3SZBhMNoSk0fBr35O4YADDah6D02Acyj5RNUYeI,18449
|
|
99
98
|
pvlib/iotools/bsrn.py,sha256=Y_-_7qdxu047oiCQLO6idu42MMCvh3Im5uBPxCa-YwU,21837
|
|
100
99
|
pvlib/iotools/crn.py,sha256=PLugc4RF_0LzesWHnyCOtx9KmqeECZH9kxcXgzgjGrQ,5336
|
|
101
100
|
pvlib/iotools/epw.py,sha256=U35VKQE-bsttZp3QUZ2AsEqZpMQDIPj4IrhsWGGFJsI,17263
|
|
102
|
-
pvlib/iotools/midc.py,sha256=
|
|
101
|
+
pvlib/iotools/midc.py,sha256=T2kskGsBzeHY-9HHc8096mbOaifKvFturCTcZq1pIzY,9568
|
|
103
102
|
pvlib/iotools/panond.py,sha256=okK6zNh5r-H1gDPbZRmWEcYYaBmifPhp1ESR-P2YM9s,5262
|
|
104
103
|
pvlib/iotools/psm3.py,sha256=QDNoLQznmhECb2pPnBi3EVno4d0jy-clDBPjKzJkX0o,14765
|
|
105
|
-
pvlib/iotools/pvgis.py,sha256=
|
|
104
|
+
pvlib/iotools/pvgis.py,sha256=cwkf8Z6UO6rjdZhhaBneUwoT2SMMnTuyIqyDa0vF_ds,31143
|
|
106
105
|
pvlib/iotools/sodapro.py,sha256=Hw4kOUorJ3olSjB5FBlZjdNxIrkjWtDIHZd1IugVsBs,15629
|
|
107
106
|
pvlib/iotools/solaranywhere.py,sha256=_kDetQ0R8rQgcfTZjeQArq9nmCtVa4upF_KGrcipovQ,12535
|
|
108
107
|
pvlib/iotools/solargis.py,sha256=6FeIsqs_bs2oNrUGvkv7Dc4AlIsDiwpCs5oFVcBheO8,8274
|
|
@@ -113,7 +112,7 @@ pvlib/iotools/surfrad.py,sha256=WFh2__FGlOwHg6RTxIkcMmdMucX0vbQfHEz9q_HLGjY,7349
|
|
|
113
112
|
pvlib/iotools/tmy.py,sha256=-lxHnehZ2FnblM_28KYPG4FWd_rnDXIHv_dHJz092K0,30719
|
|
114
113
|
pvlib/ivtools/__init__.py,sha256=bnUDPqkzCP96CaFFK3Gw4HNczJoHtO-cI9GBGAtZVGI,159
|
|
115
114
|
pvlib/ivtools/sde.py,sha256=HL2oE70Ls7xccikyaUSi6SQKx3cWES5XoaMAGuMjPIw,17008
|
|
116
|
-
pvlib/ivtools/sdm.py,sha256=
|
|
115
|
+
pvlib/ivtools/sdm.py,sha256=Q5d-codgQNo_aPkmEHkEI9L5RDEshdiGQQrwjS80tWU,52105
|
|
117
116
|
pvlib/ivtools/utils.py,sha256=xL88J-RuYLXFZyy1za8tvoWei0hcwWb_2ktXara2m_M,19423
|
|
118
117
|
pvlib/spa_c_files/README.md,sha256=6a1vHAYR0goT6OcH3T9STEkDbMLmnOIBnx64u-jHwFI,3196
|
|
119
118
|
pvlib/spa_c_files/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -121,37 +120,40 @@ pvlib/spa_c_files/cspa_py.pxd,sha256=iJSd5KPC_pMSEGCMbYeTQjCE3I7Uv89oLpqli0H03H4
|
|
|
121
120
|
pvlib/spa_c_files/setup.py,sha256=RcMEf0R2wKHJjvpUH5y6h22m86y6UrdXwkPkHKNme48,1102
|
|
122
121
|
pvlib/spa_c_files/spa_py.pyx,sha256=XMjlxfcSPM2nXTWVbyGme0HFBvPhOxRFuQEnbhQfT3Q,809
|
|
123
122
|
pvlib/spa_c_files/spa_py_example.py,sha256=p3ms0mhLycAuZJyaE3Wageqnd_56zh2EKxXK-jlTJfg,1179
|
|
124
|
-
pvlib/spectrum/__init__.py,sha256=
|
|
125
|
-
pvlib/spectrum/
|
|
126
|
-
pvlib/spectrum/
|
|
123
|
+
pvlib/spectrum/__init__.py,sha256=ZRSmAwDBF0w1MsURdKxshnV6tCjy9bQ02WzYUysGGzc,531
|
|
124
|
+
pvlib/spectrum/irradiance.py,sha256=6XHQuBR8T8Pw5GNWBj8MjEJBRF5EUY86UaLR942PVkI,10124
|
|
125
|
+
pvlib/spectrum/mismatch.py,sha256=0emondq-Zr1LY6UtfVusIjDz5lzNEa4MAVXpBhaRIZ0,30488
|
|
126
|
+
pvlib/spectrum/response.py,sha256=k3FCoPPR_2yGrfXPGsZljJcgrQ7sckQn0CwiqERNntY,9413
|
|
127
|
+
pvlib/spectrum/spectrl2.py,sha256=sPOZe5lXgkwMem3JbEi19uW7OQq4FzxcZyCnxzXFjWs,19022
|
|
127
128
|
pvlib/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
128
129
|
pvlib/tests/conftest.py,sha256=gqTLfGacGrfSYhhRCRkfjXQgdr50KfuwliZWQvPQfNc,13217
|
|
130
|
+
pvlib/tests/test__deprecation.py,sha256=Ds70HdB_HyxybIAnlqfI6vVlIBwAekkRgx26-2ywh1k,2771
|
|
129
131
|
pvlib/tests/test_albedo.py,sha256=Ef-yoAZxB5VUBdlWpElY_XDkZxb_4nUKzYjXRpbrFZQ,4117
|
|
130
|
-
pvlib/tests/test_atmosphere.py,sha256=
|
|
131
|
-
pvlib/tests/test_clearsky.py,sha256=
|
|
132
|
-
pvlib/tests/test_conftest.py,sha256=
|
|
132
|
+
pvlib/tests/test_atmosphere.py,sha256=4Wry_s-BvhZwFyqSVgeMEHBzDlTuavF2vHKVefOr3f4,12099
|
|
133
|
+
pvlib/tests/test_clearsky.py,sha256=z9UKJ_n-1O8wa7dBQ3WGpQr7M4TNtlVOeUYMb9psKvk,33951
|
|
134
|
+
pvlib/tests/test_conftest.py,sha256=2KeIyasWVotLCpfZRKfJP_MngJ5XQQywasmNZMtYs9E,1628
|
|
133
135
|
pvlib/tests/test_iam.py,sha256=jdnEYrUEdN-4GqISGZfaeL0xct2MSnCNNweRzlIixyo,18815
|
|
134
136
|
pvlib/tests/test_inverter.py,sha256=QtLvqVLsSG9p9vHQgv6xxY3LgWmoYk7vbsHIqsrsYCc,7440
|
|
135
|
-
pvlib/tests/test_irradiance.py,sha256=
|
|
137
|
+
pvlib/tests/test_irradiance.py,sha256=ernMGhF5XE5OTAUFQPnmcyvsUrQK0YMa1cOFCnTciWg,58573
|
|
136
138
|
pvlib/tests/test_location.py,sha256=UIQPw2yY5SeC0BedKkwz3KuUGulP-37Uc92aYO5bjRE,13673
|
|
137
139
|
pvlib/tests/test_modelchain.py,sha256=S8vuTKt4cf1c0Ys6PCyyl3TwIBvEu1oXi9n_3GGe7O0,86805
|
|
138
140
|
pvlib/tests/test_numerical_precision.py,sha256=hu9ebaykI3WxZhE1SOzbw0zjjcYjg79-T5oGQlBNzXo,4331
|
|
139
141
|
pvlib/tests/test_pvarray.py,sha256=zAxaK-2jUPLRwgOlnPdpvgLeSHL7op_63XxSDzKup8s,2694
|
|
140
|
-
pvlib/tests/test_pvsystem.py,sha256=
|
|
142
|
+
pvlib/tests/test_pvsystem.py,sha256=HUjPCcXxKGoMugrWTKCfKSs4KcbopOPYjIv3myC3Ecg,98752
|
|
141
143
|
pvlib/tests/test_scaling.py,sha256=KlzMAiZcpWHLega4JJIBUy5PbzworWm9tqjLFaqoFcg,6832
|
|
142
144
|
pvlib/tests/test_shading.py,sha256=dScCg30ohMwl_h3KF5UM6YE7t_zPYdydGp2Vr8su-aA,14816
|
|
143
145
|
pvlib/tests/test_singlediode.py,sha256=Cw8j4jhi65VQj_KZ0ovXv0EmP4rHySNRWTgYZ4rnA48,24414
|
|
144
146
|
pvlib/tests/test_snow.py,sha256=YyPpF-_VwNadrsuUzv32UgRlzZHEDxSYpciLNga16P0,8590
|
|
145
147
|
pvlib/tests/test_soiling.py,sha256=QepAr_jVS24l07EUx8rrTjG67t7_vltJ1si_MlOXAGE,8183
|
|
146
|
-
pvlib/tests/test_solarposition.py,sha256=
|
|
147
|
-
pvlib/tests/test_spa.py,sha256
|
|
148
|
-
pvlib/tests/test_spectrum.py,sha256=Q-j2lZj3MhmqA9fm5QZyJkOhDE2WqcHFEf6YU22-oDU,22699
|
|
148
|
+
pvlib/tests/test_solarposition.py,sha256=KZuy3lNfv6Ff271YoD7tvFh54MS9rQTX5rkjgPErjPY,44860
|
|
149
|
+
pvlib/tests/test_spa.py,sha256=-es3i-uENwSoRtMMTaWSUV-f3ZHRgMlMhsLO90H2L0U,17977
|
|
149
150
|
pvlib/tests/test_temperature.py,sha256=WTXzDM7w_6wCaB0Fm-WnGW82y6ZIgtpny6hJU1DZTKM,18448
|
|
150
151
|
pvlib/tests/test_tools.py,sha256=zfh_U1-VVRoQN-Ixl7K9CQc-YMA611lI3ukzJu4RL3o,5778
|
|
151
152
|
pvlib/tests/test_tracking.py,sha256=tqnVv3wGagJetly9qwJFstuMHAiakweTi31sR0VZbSU,20543
|
|
152
153
|
pvlib/tests/test_transformer.py,sha256=fxSskVgKnwYxXxJboX6q2gZ-NF_I8C2KdE-_ememBis,1499
|
|
153
154
|
pvlib/tests/bifacial/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
154
155
|
pvlib/tests/bifacial/test_infinite_sheds.py,sha256=wYuJ8U7gEiG-lg0L3j2NaGOG6NhQWB2ZAUnrffH-n0Y,13549
|
|
156
|
+
pvlib/tests/bifacial/test_losses_models.py,sha256=6ekeUjCSUHY2MvVIutQGnVO5BX-Aof6AwN7j2tDnAKs,1936
|
|
155
157
|
pvlib/tests/bifacial/test_pvfactors.py,sha256=vocfxIsBAZwaEeRDfRAZmvemuYIRXI0UVbuKqUXRU6g,3144
|
|
156
158
|
pvlib/tests/bifacial/test_utils.py,sha256=c6Q9H_3pocHDNokxq26HCPiyoNvZGS1h9FmSLrWPPh4,8346
|
|
157
159
|
pvlib/tests/iotools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -162,7 +164,7 @@ pvlib/tests/iotools/test_epw.py,sha256=7JkDYhKEE6yWZSyvDaHMFp_Nt5dZOT5vzyP3Sg-Nl
|
|
|
162
164
|
pvlib/tests/iotools/test_midc.py,sha256=D86u7UxhoYsIXcKoE4yJI46tiC75xnwArmwRCQJmvHY,2878
|
|
163
165
|
pvlib/tests/iotools/test_panond.py,sha256=1yH_5DKW2JXdVLL7Y769jAY0S-8UtYzlO-Sp9SuPwCk,1149
|
|
164
166
|
pvlib/tests/iotools/test_psm3.py,sha256=yxQMLs4w_aGuAfUmd5QjxVDG4EWdbjWXGSQRx6lNwOo,8157
|
|
165
|
-
pvlib/tests/iotools/test_pvgis.py,sha256=
|
|
167
|
+
pvlib/tests/iotools/test_pvgis.py,sha256=UDRyKqwKKoVXZtOqJvamJZ_q8eVq_fg0IMdZSO2M7-E,29713
|
|
166
168
|
pvlib/tests/iotools/test_sodapro.py,sha256=QndGGTl-cj9YW-vM8qWoM6nswXqeqDf6P5_ML4kKlpA,14343
|
|
167
169
|
pvlib/tests/iotools/test_solaranywhere.py,sha256=tQU2Rb8shSWOeRyGuUZr8XPUGiM3mB21IiIN7l91eqM,12404
|
|
168
170
|
pvlib/tests/iotools/test_solargis.py,sha256=nQsRFB1yfWKFFs9ASm3b1dnNSbP0vSyZB6KsUn9nqUw,2575
|
|
@@ -173,11 +175,17 @@ pvlib/tests/iotools/test_surfrad.py,sha256=fQ8iFFqdvwXO2B0bdAphJIaP9_n94EhV_gNth
|
|
|
173
175
|
pvlib/tests/iotools/test_tmy.py,sha256=LW6CgSkfO8I5W3iAJezST3M2RRGJLfoJ5bMwUyhFbWU,5106
|
|
174
176
|
pvlib/tests/ivtools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
175
177
|
pvlib/tests/ivtools/test_sde.py,sha256=dBJkk9tWskwc6Iyoziar9MoZESrOSkepOk51g5QOy1I,13844
|
|
176
|
-
pvlib/tests/ivtools/test_sdm.py,sha256=
|
|
178
|
+
pvlib/tests/ivtools/test_sdm.py,sha256=Luucjznix7RbfiaK5BCpZ2F31FiGC4bwh8Dg50eOGSU,17483
|
|
177
179
|
pvlib/tests/ivtools/test_utils.py,sha256=-BPEUgB5aCkJOv-apRkjeg0IraZ1Ebf5SmObk4Zusz4,6905
|
|
178
|
-
pvlib
|
|
179
|
-
pvlib
|
|
180
|
-
pvlib
|
|
181
|
-
pvlib
|
|
182
|
-
pvlib
|
|
183
|
-
pvlib
|
|
180
|
+
pvlib/tests/spectrum/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
181
|
+
pvlib/tests/spectrum/conftest.py,sha256=AO-s58RFhpQwxpD4R7SgoXUr41-aGDT2biQNDC37X_E,1162
|
|
182
|
+
pvlib/tests/spectrum/test_irradiance.py,sha256=CzUAJyqVephWMVY_VDm2rpx_k34eRbictp36CJbmDgA,5149
|
|
183
|
+
pvlib/tests/spectrum/test_mismatch.py,sha256=_REidx9hLNKWu6adHHTYvzMcskDkpl0HGouBCXSEblE,12866
|
|
184
|
+
pvlib/tests/spectrum/test_response.py,sha256=fhuUUammwaX79MEAkU9_Y4DuIRnmadU-L5o2IYkgn7g,4408
|
|
185
|
+
pvlib/tests/spectrum/test_spectrl2.py,sha256=onKLvX4HzpQsEXLN0VKrumoAOYucjBz-YEqw_XWqKy8,2604
|
|
186
|
+
pvlib-0.11.2.dist-info/AUTHORS.md,sha256=Fxk4p_lXlMeQ6g2A1-7oPrgpULDxuJuC9Ebc-3yyj_o,1474
|
|
187
|
+
pvlib-0.11.2.dist-info/LICENSE,sha256=oC4S3araPPDV292K_91XfC7sZAdYqVhCowT3UTuMC-Q,1622
|
|
188
|
+
pvlib-0.11.2.dist-info/METADATA,sha256=u0zX5lY_x5pdzisLrz7cYmsL29MzDqHmMPZklXLGnOc,2889
|
|
189
|
+
pvlib-0.11.2.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
190
|
+
pvlib-0.11.2.dist-info/top_level.txt,sha256=eq9CH6YXUc3Fh3dyQ5hQXoGYfSm1SYEAlMygyR22MgE,6
|
|
191
|
+
pvlib-0.11.2.dist-info/RECORD,,
|
|
Binary file
|