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.
- pvlib/__init__.py +3 -2
- pvlib/atmosphere.py +23 -173
- pvlib/bifacial/infinite_sheds.py +88 -277
- pvlib/bifacial/utils.py +270 -28
- pvlib/data/adr-library-cec-inverters-2019-03-05.csv +5009 -0
- pvlib/data/precise_iv_curves1.json +10251 -0
- pvlib/data/precise_iv_curves2.json +10251 -0
- pvlib/data/precise_iv_curves_parameter_sets1.csv +33 -0
- pvlib/data/precise_iv_curves_parameter_sets2.csv +33 -0
- pvlib/data/test_psm3_2017.csv +17521 -17521
- pvlib/data/test_psm3_2019_5min.csv +288 -288
- pvlib/data/test_read_psm3.csv +17522 -17522
- pvlib/data/test_read_pvgis_horizon.csv +49 -0
- pvlib/data/variables_style_rules.csv +3 -0
- pvlib/iam.py +207 -51
- pvlib/inverter.py +6 -1
- pvlib/iotools/__init__.py +7 -2
- pvlib/iotools/acis.py +516 -0
- pvlib/iotools/midc.py +4 -4
- pvlib/iotools/psm3.py +59 -42
- pvlib/iotools/pvgis.py +84 -28
- pvlib/iotools/sodapro.py +8 -6
- pvlib/iotools/srml.py +121 -18
- pvlib/iotools/surfrad.py +2 -2
- pvlib/iotools/tmy.py +146 -102
- pvlib/irradiance.py +270 -15
- pvlib/ivtools/sde.py +14 -20
- pvlib/ivtools/sdm.py +31 -20
- pvlib/ivtools/utils.py +127 -6
- pvlib/location.py +3 -2
- pvlib/modelchain.py +67 -70
- pvlib/pvarray.py +225 -0
- pvlib/pvsystem.py +169 -539
- pvlib/shading.py +43 -2
- pvlib/singlediode.py +216 -66
- pvlib/snow.py +36 -15
- pvlib/soiling.py +3 -3
- pvlib/spa.py +327 -368
- pvlib/spectrum/__init__.py +8 -2
- pvlib/spectrum/mismatch.py +335 -0
- pvlib/temperature.py +124 -13
- pvlib/tests/bifacial/test_infinite_sheds.py +44 -106
- pvlib/tests/bifacial/test_utils.py +102 -5
- pvlib/tests/conftest.py +0 -31
- pvlib/tests/iotools/test_acis.py +213 -0
- pvlib/tests/iotools/test_midc.py +6 -6
- pvlib/tests/iotools/test_psm3.py +7 -5
- pvlib/tests/iotools/test_pvgis.py +21 -14
- pvlib/tests/iotools/test_sodapro.py +1 -1
- pvlib/tests/iotools/test_srml.py +71 -6
- pvlib/tests/iotools/test_tmy.py +43 -8
- pvlib/tests/ivtools/test_sde.py +19 -17
- pvlib/tests/ivtools/test_sdm.py +9 -4
- pvlib/tests/ivtools/test_utils.py +96 -1
- pvlib/tests/test_atmosphere.py +8 -64
- pvlib/tests/test_clearsky.py +0 -1
- pvlib/tests/test_iam.py +74 -1
- pvlib/tests/test_irradiance.py +56 -2
- pvlib/tests/test_location.py +1 -1
- pvlib/tests/test_modelchain.py +33 -76
- pvlib/tests/test_pvarray.py +46 -0
- pvlib/tests/test_pvsystem.py +366 -201
- pvlib/tests/test_shading.py +35 -0
- pvlib/tests/test_singlediode.py +306 -29
- pvlib/tests/test_snow.py +84 -1
- pvlib/tests/test_soiling.py +8 -7
- pvlib/tests/test_solarposition.py +7 -7
- pvlib/tests/test_spa.py +6 -7
- pvlib/tests/test_spectrum.py +145 -1
- pvlib/tests/test_temperature.py +29 -11
- pvlib/tests/test_tools.py +41 -0
- pvlib/tests/test_tracking.py +0 -149
- pvlib/tools.py +49 -25
- pvlib/tracking.py +1 -269
- pvlib-0.10.0.dist-info/AUTHORS.md +35 -0
- {pvlib-0.9.4a1.dist-info → pvlib-0.10.0.dist-info}/LICENSE +5 -2
- {pvlib-0.9.4a1.dist-info → pvlib-0.10.0.dist-info}/METADATA +3 -13
- {pvlib-0.9.4a1.dist-info → pvlib-0.10.0.dist-info}/RECORD +80 -75
- {pvlib-0.9.4a1.dist-info → pvlib-0.10.0.dist-info}/WHEEL +1 -1
- pvlib/data/adr-library-2013-10-01.csv +0 -1762
- pvlib/forecast.py +0 -1211
- pvlib/iotools/ecmwf_macc.py +0 -312
- pvlib/tests/iotools/test_ecmwf_macc.py +0 -162
- pvlib/tests/test_forecast.py +0 -228
- pvlib-0.9.4a1.dist-info/AUTHORS.md +0 -32
- {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
|
|
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)
|
|
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
|
|
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.
|
|
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:
|
|
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.
|
|
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=
|
|
1
|
+
pvlib/__init__.py,sha256=qwhsPejThIvdjXjmvMilAJ09x1mPQEvViMmVfsnvRac,473
|
|
2
2
|
pvlib/_deprecation.py,sha256=f1SulhOD36F3Cd92ZS3-NAgkDjvaBUpYKvav7vDREno,13140
|
|
3
|
-
pvlib/atmosphere.py,sha256=
|
|
3
|
+
pvlib/atmosphere.py,sha256=FX66fGf9WebMfcTLguw2AOx-kgojT9JkqRkSnB4wLi0,17738
|
|
4
4
|
pvlib/clearsky.py,sha256=4y5jGvNjkE-CV9dRAU3u6k7y894q69vPVjr4-Q1Tb18,35298
|
|
5
|
-
pvlib/
|
|
6
|
-
pvlib/
|
|
7
|
-
pvlib/
|
|
8
|
-
pvlib/
|
|
9
|
-
pvlib/
|
|
10
|
-
pvlib/
|
|
11
|
-
pvlib/pvsystem.py,sha256=
|
|
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=
|
|
14
|
-
pvlib/singlediode.py,sha256=
|
|
15
|
-
pvlib/snow.py,sha256=
|
|
16
|
-
pvlib/soiling.py,sha256=
|
|
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=
|
|
19
|
-
pvlib/temperature.py,sha256=
|
|
20
|
-
pvlib/tools.py,sha256=
|
|
21
|
-
pvlib/tracking.py,sha256=
|
|
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=
|
|
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=
|
|
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-
|
|
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=
|
|
76
|
-
pvlib/data/test_psm3_2019_5min.csv,sha256=
|
|
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=
|
|
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=
|
|
85
|
-
pvlib/iotools/__init__.py,sha256
|
|
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=
|
|
91
|
-
pvlib/iotools/psm3.py,sha256=
|
|
92
|
-
pvlib/iotools/pvgis.py,sha256=
|
|
93
|
-
pvlib/iotools/sodapro.py,sha256=
|
|
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=
|
|
96
|
-
pvlib/iotools/surfrad.py,sha256=
|
|
97
|
-
pvlib/iotools/tmy.py,sha256=
|
|
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=
|
|
100
|
-
pvlib/ivtools/sdm.py,sha256=
|
|
101
|
-
pvlib/ivtools/utils.py,sha256=
|
|
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=
|
|
110
|
-
pvlib/spectrum/mismatch.py,sha256=
|
|
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=
|
|
114
|
-
pvlib/tests/test_atmosphere.py,sha256=
|
|
115
|
-
pvlib/tests/test_clearsky.py,sha256=
|
|
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/
|
|
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=
|
|
121
|
-
pvlib/tests/test_location.py,sha256=
|
|
122
|
-
pvlib/tests/test_modelchain.py,sha256=
|
|
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/
|
|
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=
|
|
127
|
-
pvlib/tests/test_singlediode.py,sha256=
|
|
128
|
-
pvlib/tests/test_snow.py,sha256=
|
|
129
|
-
pvlib/tests/test_soiling.py,sha256=
|
|
130
|
-
pvlib/tests/test_solarposition.py,sha256=
|
|
131
|
-
pvlib/tests/test_spa.py,sha256=
|
|
132
|
-
pvlib/tests/test_spectrum.py,sha256=
|
|
133
|
-
pvlib/tests/test_temperature.py,sha256=
|
|
134
|
-
pvlib/tests/test_tools.py,sha256=
|
|
135
|
-
pvlib/tests/test_tracking.py,sha256=
|
|
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=
|
|
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=
|
|
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=
|
|
146
|
-
pvlib/tests/iotools/test_psm3.py,sha256
|
|
147
|
-
pvlib/tests/iotools/test_pvgis.py,sha256=
|
|
148
|
-
pvlib/tests/iotools/test_sodapro.py,sha256=
|
|
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=
|
|
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=
|
|
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=
|
|
155
|
-
pvlib/tests/ivtools/test_sdm.py,sha256=
|
|
156
|
-
pvlib/tests/ivtools/test_utils.py,sha256
|
|
157
|
-
pvlib-0.
|
|
158
|
-
pvlib-0.
|
|
159
|
-
pvlib-0.
|
|
160
|
-
pvlib-0.
|
|
161
|
-
pvlib-0.
|
|
162
|
-
pvlib-0.
|
|
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,,
|