@@ -70,11 +70,11 @@ functions that do the computation.
70
70
Ineichen
71
71
--------
72
72
73
- The Ineichen and Perez (2002) model has proven to be a popular model.
74
- The model parameterizes irradiance in terms of the Linke turbidity.
73
+ The Ineichen and Perez (2002) clear sky model parameterizes irradiance
74
+ in terms of the Linke turbidity.
75
75
76
- Turbidity
77
- ^^^^^^^^^
76
+ Turbidity data
77
+ ^^^^^^^^^^^^^^
78
78
79
79
pvlib includes a file with monthly climatological turbidity values for
80
80
the globe. The code below creates turbidity maps for a few months of
@@ -141,8 +141,12 @@ the variability of the data set.
141
141
@savefig turbidity -yes-interp.png width=6in
142
142
plt.ylabel(' Linke Turbidity' );
143
143
144
- Will Holmgren did some rough analysis comparing pvlib's ineichen model
145
- to `SoDa's McClear service
144
+
145
+ Validation
146
+ ^^^^^^^^^^
147
+
148
+ Will Holmgren compared pvlib's Ineichen model and climatological
149
+ turbidity to `SoDa's McClear service
146
150
<http://www.soda-pro.com/web-services/radiation/cams-mcclear> `_ in
147
151
Arizona. Here are links to an
148
152
`ipynb notebook
@@ -157,9 +161,27 @@ Simplified Solis
157
161
The Simplified Solis model parameterizes irradiance in terms of
158
162
precipitable water and aerosol optical depth.
159
163
164
+ Aerosol and precipitable water data
165
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
166
+
167
+ There are a number of sources for aerosol and precipitable water data
168
+ of varying accuracy, global coverage, and temporal resolution.
160
169
Ground based aerosol data can be obtained from
161
170
`Aeronet <http://aeronet.gsfc.nasa.gov >`_. Precipitable water can be obtained
162
- from `ESRL <http://gpsmet.noaa.gov/cgi-bin/gnuplots/rti.cgi >`_.
171
+ from `radiosondes <http://weather.uwyo.edu/upperair/sounding.html >`_,
172
+ `ESRL GPS-MET <http://gpsmet.noaa.gov/cgi-bin/gnuplots/rti.cgi >`_, or
173
+ derived from surface relative humidity using the
174
+ :py:func: `pvlib.atmosphere.gueymard94_pw ` function.
175
+ Numerous gridded products from satellites, weather models, and climate models
176
+ contain one or both of aerosols and precipitable water.
177
+
178
+ Note that aerosol optical depth is a function of wavelength, so be sure
179
+ that you understand the aerosol data that you're looking at. The
180
+ Simplified Solis model requires AOD at 700 nm. Models exist to convert
181
+ AOD between different wavelengths, as well as convert Linke turbidity to
182
+ AOD.
183
+
184
+
163
185
164
186
.. ipython :: python
165
187
@@ -266,5 +288,9 @@ from `ESRL <http://gpsmet.noaa.gov/cgi-bin/gnuplots/rti.cgi>`_.
266
288
@savefig solis -dhi.png width=6in
267
289
plt.show()
268
290
291
+
292
+ Validation
293
+ ^^^^^^^^^^
294
+
269
295
We encourage users to compare the pvlib implementation to Ineichen's
270
296
`Excel tool <http://www.unige.ch/energie/fr/equipe/ineichen/solis-tool/ >`_.
0 commit comments