pvlib 0.11.1__tar.gz → 0.12.0__tar.gz

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 (397) hide show
  1. {pvlib-0.11.1/pvlib.egg-info → pvlib-0.12.0}/PKG-INFO +5 -2
  2. {pvlib-0.11.1 → pvlib-0.12.0}/README.md +1 -1
  3. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/shading/plot_martinez_shade_loss.py +2 -8
  4. pvlib-0.12.0/docs/sphinx/source/_images/example_function_screenshot.png +0 -0
  5. pvlib-0.12.0/docs/sphinx/source/_static/tooltipster_color_theming.css +10 -0
  6. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/conf.py +21 -9
  7. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/contributing/how_to_contribute_new_code.rst +2 -3
  8. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/contributing/index.rst +2 -0
  9. pvlib-0.12.0/docs/sphinx/source/contributing/style_guide.rst +352 -0
  10. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/contributing/testing.rst +10 -10
  11. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/index.rst +1 -1
  12. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/reference/airmass_atmospheric.rst +2 -1
  13. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/reference/effects_on_pv_system_output/spectrum.rst +0 -1
  14. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/reference/modelchain.rst +0 -1
  15. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/reference/pv_modeling/system_models.rst +0 -1
  16. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/reference/tracking.rst +0 -3
  17. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/reference/transformer.rst +1 -1
  18. pvlib-0.12.0/docs/sphinx/source/user_guide/index.rst +34 -0
  19. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/user_guide/introtutorial.rst +1 -1
  20. pvlib-0.12.0/docs/sphinx/source/user_guide/nomenclature.rst +199 -0
  21. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/user_guide/singlediode.rst +14 -14
  22. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/user_guide/weather_data.rst +1 -1
  23. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/whatsnew/v0.10.0.rst +2 -2
  24. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/whatsnew/v0.11.0.rst +1 -1
  25. pvlib-0.12.0/docs/sphinx/source/whatsnew/v0.11.2.rst +99 -0
  26. pvlib-0.12.0/docs/sphinx/source/whatsnew/v0.12.0.rst +100 -0
  27. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/whatsnew/v0.3.0.txt +1 -1
  28. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/whatsnew/v0.6.1.rst +1 -1
  29. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/whatsnew/v0.7.0.rst +1 -1
  30. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/whatsnew/v0.7.2.rst +1 -1
  31. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/whatsnew/v0.9.3.rst +1 -1
  32. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/whatsnew.rst +2 -0
  33. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/__init__.py +1 -0
  34. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/_deprecation.py +73 -0
  35. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/atmosphere.py +77 -7
  36. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/bifacial/infinite_sheds.py +4 -3
  37. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/bifacial/utils.py +2 -1
  38. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/clearsky.py +35 -22
  39. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/iam.py +4 -4
  40. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/iotools/midc.py +1 -1
  41. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/iotools/psm3.py +1 -1
  42. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/iotools/pvgis.py +10 -12
  43. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/iotools/tmy.py +3 -69
  44. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/irradiance.py +112 -55
  45. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/ivtools/sdm.py +75 -52
  46. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/location.py +73 -33
  47. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/modelchain.py +18 -35
  48. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/pvsystem.py +139 -94
  49. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/snow.py +64 -28
  50. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/solarposition.py +46 -30
  51. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/spa.py +4 -2
  52. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/spectrum/__init__.py +0 -1
  53. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/spectrum/irradiance.py +2 -64
  54. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/spectrum/mismatch.py +3 -3
  55. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/spectrum/spectrl2.py +2 -1
  56. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/temperature.py +49 -3
  57. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/tools.py +6 -5
  58. {pvlib-0.11.1 → pvlib-0.12.0/pvlib.egg-info}/PKG-INFO +5 -2
  59. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib.egg-info/SOURCES.txt +119 -115
  60. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib.egg-info/requires.txt +1 -0
  61. {pvlib-0.11.1 → pvlib-0.12.0}/pyproject.toml +10 -1
  62. pvlib-0.12.0/scripts/update_top_ranking_issues.py +81 -0
  63. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/bifacial/test_infinite_sheds.py +2 -1
  64. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/bifacial/test_pvfactors.py +1 -1
  65. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/conftest.py +2 -1
  66. pvlib-0.12.0/tests/data/pvgis_tmy_test.csv +8761 -0
  67. pvlib-0.12.0/tests/data/tmy_45.000_8.000_2005_2023.csv +8790 -0
  68. pvlib-0.12.0/tests/data/tmy_45.000_8.000_2005_2023.epw +8768 -0
  69. pvlib-0.12.0/tests/data/tmy_45.000_8.000_2005_2023.json +1 -0
  70. pvlib-0.12.0/tests/data/tmy_45.000_8.000_2005_2023.txt +8761 -0
  71. pvlib-0.12.0/tests/data/tmy_45.000_8.000_userhorizon.json +1 -0
  72. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/iotools/test_acis.py +1 -1
  73. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/iotools/test_bsrn.py +11 -6
  74. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/iotools/test_crn.py +7 -3
  75. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/iotools/test_epw.py +2 -2
  76. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/iotools/test_midc.py +4 -4
  77. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/iotools/test_panond.py +4 -3
  78. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/iotools/test_psm3.py +11 -7
  79. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/iotools/test_pvgis.py +28 -17
  80. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/iotools/test_sodapro.py +5 -5
  81. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/iotools/test_solaranywhere.py +8 -4
  82. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/iotools/test_solargis.py +6 -2
  83. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/iotools/test_solrad.py +8 -3
  84. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/iotools/test_srml.py +9 -4
  85. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/iotools/test_surfrad.py +2 -2
  86. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/iotools/test_tmy.py +5 -24
  87. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/ivtools/test_sde.py +0 -1
  88. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/ivtools/test_sdm.py +26 -6
  89. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/ivtools/test_utils.py +2 -2
  90. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/spectrum/conftest.py +2 -2
  91. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/spectrum/test_irradiance.py +4 -10
  92. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/spectrum/test_mismatch.py +5 -5
  93. pvlib-0.12.0/tests/test__deprecation.py +97 -0
  94. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/test_atmosphere.py +145 -6
  95. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/test_clearsky.py +12 -6
  96. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/test_conftest.py +1 -45
  97. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/test_inverter.py +3 -3
  98. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/test_irradiance.py +73 -10
  99. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/test_location.py +60 -19
  100. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/test_modelchain.py +36 -27
  101. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/test_numerical_precision.py +2 -2
  102. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/test_pvsystem.py +19 -8
  103. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/test_singlediode.py +5 -5
  104. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/test_snow.py +37 -0
  105. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/test_soiling.py +7 -6
  106. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/test_solarposition.py +33 -0
  107. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/test_spa.py +29 -0
  108. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/test_temperature.py +2 -3
  109. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/test_tools.py +111 -3
  110. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/test_tracking.py +2 -3
  111. pvlib-0.11.1/docs/sphinx/source/contributing/style_guide.rst +0 -144
  112. pvlib-0.11.1/docs/sphinx/source/user_guide/index.rst +0 -20
  113. pvlib-0.11.1/docs/sphinx/source/user_guide/variables_style_rules.rst +0 -25
  114. pvlib-0.11.1/pvlib/data/aod550_tcwv_20121101_test.nc +0 -0
  115. pvlib-0.11.1/pvlib/data/pvgis_tmy_test.dat +0 -8761
  116. pvlib-0.11.1/pvlib/data/tmy_45.000_8.000_2005_2020.csv +0 -8789
  117. pvlib-0.11.1/pvlib/data/tmy_45.000_8.000_2005_2020.epw +0 -8768
  118. pvlib-0.11.1/pvlib/data/tmy_45.000_8.000_2005_2020.json +0 -1
  119. pvlib-0.11.1/pvlib/data/tmy_45.000_8.000_2005_2020.txt +0 -8761
  120. pvlib-0.11.1/pvlib/data/tmy_45.000_8.000_userhorizon.json +0 -1
  121. pvlib-0.11.1/pvlib/data/variables_style_rules.csv +0 -56
  122. {pvlib-0.11.1 → pvlib-0.12.0}/AUTHORS.md +0 -0
  123. {pvlib-0.11.1 → pvlib-0.12.0}/LICENSE +0 -0
  124. {pvlib-0.11.1 → pvlib-0.12.0}/MANIFEST.in +0 -0
  125. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/README.rst +0 -0
  126. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/adr-pvarray/README.rst +0 -0
  127. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/adr-pvarray/plot_fit_to_matrix.py +0 -0
  128. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/adr-pvarray/plot_simulate_fast.py +0 -0
  129. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/adr-pvarray/plot_simulate_system.py +0 -0
  130. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/agrivoltaics/README.rst +0 -0
  131. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/agrivoltaics/plot_diffuse_PAR_Spitters_relationship.py +0 -0
  132. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/bifacial/README.rst +0 -0
  133. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/bifacial/plot_bifi_model_mc.py +0 -0
  134. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/bifacial/plot_bifi_model_pvwatts.py +0 -0
  135. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/bifacial/plot_irradiance_nonuniformity_loss.py +0 -0
  136. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/bifacial/plot_pvfactors_fixed_tilt.py +0 -0
  137. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/floating-pv/README.rst +0 -0
  138. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/floating-pv/plot_floating_pv_cell_temperature.py +0 -0
  139. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/irradiance-decomposition/README.rst +0 -0
  140. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/irradiance-decomposition/plot_diffuse_fraction.py +0 -0
  141. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/irradiance-transposition/README.rst +0 -0
  142. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/irradiance-transposition/plot_ghi_transposition.py +0 -0
  143. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/irradiance-transposition/plot_interval_transposition_error.py +0 -0
  144. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/irradiance-transposition/plot_mixed_orientation.py +0 -0
  145. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/irradiance-transposition/plot_rtranpose_limitations.py +0 -0
  146. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/irradiance-transposition/plot_rtranpose_year.py +0 -0
  147. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/irradiance-transposition/plot_seasonal_tilt.py +0 -0
  148. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/irradiance-transposition/plot_transposition_gain.py +0 -0
  149. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/irradiance-transposition/use_perez_modelchain.py +0 -0
  150. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/iv-modeling/README.rst +0 -0
  151. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/iv-modeling/plot_singlediode.py +0 -0
  152. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/reflections/README.rst +0 -0
  153. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/reflections/plot_convert_iam_models.py +0 -0
  154. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/reflections/plot_diffuse_aoi_correction.py +0 -0
  155. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/reflections/plot_fit_iam_models.py +0 -0
  156. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/shading/README.rst +0 -0
  157. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/shading/plot_partial_module_shading_simple.py +0 -0
  158. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/shading/plot_passias_diffuse_shading.py +0 -0
  159. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/shading/plot_shaded_fraction1d_ns_hsat_example.py +0 -0
  160. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/shading/plot_simple_irradiance_adjustment_for_horizon_shading.py +0 -0
  161. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/soiling/README.rst +0 -0
  162. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/soiling/plot_fig3A_hsu_soiling_example.py +0 -0
  163. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/soiling/plot_greensboro_kimber_soiling.py +0 -0
  164. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/solar-position/README.rst +0 -0
  165. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/solar-position/plot_sunpath_diagrams.py +0 -0
  166. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/solar-tracking/README.rst +0 -0
  167. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/solar-tracking/plot_discontinuous_tracking.py +0 -0
  168. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/solar-tracking/plot_dual_axis_tracking.py +0 -0
  169. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/solar-tracking/plot_single_axis_tracking.py +0 -0
  170. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/solar-tracking/plot_single_axis_tracking_on_sloped_terrain.py +0 -0
  171. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/spectrum/README.rst +0 -0
  172. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/spectrum/average_photon_energy.py +0 -0
  173. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/spectrum/plot_spectrl2_fig51A.py +0 -0
  174. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/spectrum/plot_standard_ASTM_G173-03.py +0 -0
  175. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/spectrum/spectral_factor.py +0 -0
  176. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/system-models/README.rst +0 -0
  177. {pvlib-0.11.1 → pvlib-0.12.0}/docs/examples/system-models/plot_oedi_9068.py +0 -0
  178. {pvlib-0.11.1 → pvlib-0.12.0}/docs/notes/Determining the average view factor from a module.pdf +0 -0
  179. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/Makefile +0 -0
  180. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/make.bat +0 -0
  181. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/_images/Anderson_Jensen_2024_Fig3.png +0 -0
  182. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/_images/Anderson_Mikofski_2020_Fig5.jpg +0 -0
  183. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/_images/Coello_Boyle_2019_Fig3.png +0 -0
  184. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/_images/OEDI_9068_daily_timeseries.png +0 -0
  185. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/_images/OEDI_9068_inverter1_comparison.png +0 -0
  186. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/_images/OEDI_9068_inverter2_comparison.png +0 -0
  187. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/_images/PV_module_layout_cesardd.jpg +0 -0
  188. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/_images/clonebutton.png +0 -0
  189. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/_images/ground_slope_angle_convention.png +0 -0
  190. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/_images/pvlib_logo_horiz.png +0 -0
  191. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/_images/pvlib_logo_vert.png +0 -0
  192. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/_images/pvlib_powered_logo_horiz.png +0 -0
  193. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/_images/pvlib_powered_logo_vert.png +0 -0
  194. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/_images/tracker_azimuth_angle_convention.png +0 -0
  195. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/_images/tracker_rotation_angle_convention.png +0 -0
  196. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/_static/favicon-16x16.png +0 -0
  197. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/_static/favicon-32x32.png +0 -0
  198. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/_static/no_scrollbars.css +0 -0
  199. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/_static/reference_format.css +0 -0
  200. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/_static/version-alert.js +0 -0
  201. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/_templates/autosummary/class.rst +0 -0
  202. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/_templates/autosummary/function.rst +0 -0
  203. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/_templates/autosummary/method.rst +0 -0
  204. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/_templates/edit-this-page.html +0 -0
  205. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/contributing/introduction_to_contributing.rst +0 -0
  206. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/reference/bifacial.rst +0 -0
  207. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/reference/classes.rst +0 -0
  208. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/reference/clearsky.rst +0 -0
  209. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/reference/effects_on_pv_system_output/index.rst +0 -0
  210. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/reference/effects_on_pv_system_output/loss-models.rst +0 -0
  211. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/reference/effects_on_pv_system_output/shading.rst +0 -0
  212. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/reference/effects_on_pv_system_output/snow.rst +0 -0
  213. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/reference/effects_on_pv_system_output/soiling.rst +0 -0
  214. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/reference/index.rst +0 -0
  215. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/reference/iotools.rst +0 -0
  216. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/reference/irradiance/albedo.rst +0 -0
  217. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/reference/irradiance/class-methods.rst +0 -0
  218. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/reference/irradiance/clearness-index.rst +0 -0
  219. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/reference/irradiance/components.rst +0 -0
  220. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/reference/irradiance/decomposition.rst +0 -0
  221. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/reference/irradiance/index.rst +0 -0
  222. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/reference/irradiance/transposition.rst +0 -0
  223. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/reference/location.rst +0 -0
  224. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/reference/pv_modeling/iam.rst +0 -0
  225. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/reference/pv_modeling/index.rst +0 -0
  226. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/reference/pv_modeling/inverter.rst +0 -0
  227. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/reference/pv_modeling/other.rst +0 -0
  228. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/reference/pv_modeling/parameters.rst +0 -0
  229. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/reference/pv_modeling/sdm.rst +0 -0
  230. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/reference/pv_modeling/temperature.rst +0 -0
  231. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/reference/scaling.rst +0 -0
  232. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/reference/solarposition.rst +0 -0
  233. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/user_guide/bifacial.rst +0 -0
  234. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/user_guide/clearsky.rst +0 -0
  235. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/user_guide/faq.rst +0 -0
  236. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/user_guide/installation.rst +0 -0
  237. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/user_guide/modelchain.rst +0 -0
  238. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/user_guide/package_overview.rst +0 -0
  239. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/user_guide/pvsystem.rst +0 -0
  240. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/user_guide/timetimezones.rst +0 -0
  241. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/whatsnew/v0.1.0.txt +0 -0
  242. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/whatsnew/v0.10.1.rst +0 -0
  243. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/whatsnew/v0.10.2.rst +0 -0
  244. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/whatsnew/v0.10.3.rst +0 -0
  245. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/whatsnew/v0.10.4.rst +0 -0
  246. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/whatsnew/v0.10.5.rst +0 -0
  247. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/whatsnew/v0.11.1.rst +0 -0
  248. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/whatsnew/v0.2.0.txt +0 -0
  249. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/whatsnew/v0.2.1.txt +0 -0
  250. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/whatsnew/v0.2.2.txt +0 -0
  251. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/whatsnew/v0.3.1.txt +0 -0
  252. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/whatsnew/v0.3.2.txt +0 -0
  253. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/whatsnew/v0.3.3.txt +0 -0
  254. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/whatsnew/v0.4.0.txt +0 -0
  255. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/whatsnew/v0.4.1.txt +0 -0
  256. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/whatsnew/v0.4.2.txt +0 -0
  257. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/whatsnew/v0.4.3.txt +0 -0
  258. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/whatsnew/v0.4.4.txt +0 -0
  259. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/whatsnew/v0.4.5.txt +0 -0
  260. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/whatsnew/v0.5.0.rst +0 -0
  261. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/whatsnew/v0.5.1.rst +0 -0
  262. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/whatsnew/v0.5.2.rst +0 -0
  263. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/whatsnew/v0.6.0.rst +0 -0
  264. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/whatsnew/v0.6.2.rst +0 -0
  265. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/whatsnew/v0.6.3.rst +0 -0
  266. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/whatsnew/v0.7.1.rst +0 -0
  267. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/whatsnew/v0.8.0.rst +0 -0
  268. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/whatsnew/v0.8.1.rst +0 -0
  269. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/whatsnew/v0.9.0.rst +0 -0
  270. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/whatsnew/v0.9.1.rst +0 -0
  271. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/whatsnew/v0.9.2.rst +0 -0
  272. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/whatsnew/v0.9.4.rst +0 -0
  273. {pvlib-0.11.1 → pvlib-0.12.0}/docs/sphinx/source/whatsnew/v0.9.5.rst +0 -0
  274. {pvlib-0.11.1 → pvlib-0.12.0}/docs/tutorials/atmosphere.ipynb +0 -0
  275. {pvlib-0.11.1 → pvlib-0.12.0}/docs/tutorials/irradiance.ipynb +0 -0
  276. {pvlib-0.11.1 → pvlib-0.12.0}/docs/tutorials/pvsystem.ipynb +0 -0
  277. {pvlib-0.11.1 → pvlib-0.12.0}/docs/tutorials/solarposition.ipynb +0 -0
  278. {pvlib-0.11.1 → pvlib-0.12.0}/docs/tutorials/tmy.ipynb +0 -0
  279. {pvlib-0.11.1 → pvlib-0.12.0}/docs/tutorials/tmy_and_diffuse_irrad_models.ipynb +0 -0
  280. {pvlib-0.11.1 → pvlib-0.12.0}/docs/tutorials/tmy_to_power.ipynb +0 -0
  281. {pvlib-0.11.1 → pvlib-0.12.0}/docs/tutorials/tracking.ipynb +0 -0
  282. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/albedo.py +0 -0
  283. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/bifacial/__init__.py +0 -0
  284. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/bifacial/loss_models.py +0 -0
  285. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/bifacial/pvfactors.py +0 -0
  286. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/data/12839.tm2 +0 -0
  287. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/data/703165TY.csv +0 -0
  288. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/data/723170TYA.CSV +0 -0
  289. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/data/ASTMG173.csv +0 -0
  290. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/data/Altitude.h5 +0 -0
  291. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/data/LinkeTurbidities.h5 +0 -0
  292. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/data/adr-library-cec-inverters-2019-03-05.csv +0 -0
  293. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/data/sam-library-cec-inverters-2019-03-05.csv +0 -0
  294. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/data/sam-library-cec-modules-2019-03-05.csv +0 -0
  295. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/data/sam-library-sandia-modules-2015-6-30.csv +0 -0
  296. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/data/soiling_hsu_example_inputs.csv +0 -0
  297. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/inverter.py +0 -0
  298. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/iotools/__init__.py +0 -0
  299. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/iotools/acis.py +0 -0
  300. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/iotools/bsrn.py +0 -0
  301. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/iotools/crn.py +0 -0
  302. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/iotools/epw.py +0 -0
  303. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/iotools/panond.py +0 -0
  304. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/iotools/sodapro.py +0 -0
  305. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/iotools/solaranywhere.py +0 -0
  306. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/iotools/solargis.py +0 -0
  307. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/iotools/solcast.py +0 -0
  308. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/iotools/solrad.py +0 -0
  309. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/iotools/srml.py +0 -0
  310. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/iotools/surfrad.py +0 -0
  311. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/ivtools/__init__.py +0 -0
  312. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/ivtools/sde.py +0 -0
  313. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/ivtools/utils.py +0 -0
  314. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/pvarray.py +0 -0
  315. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/scaling.py +0 -0
  316. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/shading.py +0 -0
  317. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/singlediode.py +0 -0
  318. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/soiling.py +0 -0
  319. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/spa_c_files/README.md +0 -0
  320. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/spa_c_files/__init__.py +0 -0
  321. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/spa_c_files/cspa_py.pxd +0 -0
  322. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/spa_c_files/setup.py +0 -0
  323. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/spa_c_files/spa_py.pyx +0 -0
  324. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/spa_c_files/spa_py_example.py +0 -0
  325. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/spectrum/response.py +0 -0
  326. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/tracking.py +0 -0
  327. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/transformer.py +0 -0
  328. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib/version.py +0 -0
  329. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib.egg-info/dependency_links.txt +0 -0
  330. {pvlib-0.11.1 → pvlib-0.12.0}/pvlib.egg-info/top_level.txt +0 -0
  331. {pvlib-0.11.1 → pvlib-0.12.0}/setup.cfg +0 -0
  332. {pvlib-0.11.1 → pvlib-0.12.0}/setup.py +0 -0
  333. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/__init__.py +0 -0
  334. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/bifacial/__init__.py +0 -0
  335. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/bifacial/test_losses_models.py +0 -0
  336. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/bifacial/test_utils.py +0 -0
  337. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/BIRD_08_16_2012.csv +0 -0
  338. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/BIRD_08_16_2012_patm.csv +0 -0
  339. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/Burlington, United States SolarAnywhere Time Series 2021 Lat_44_465 Lon_-73_205 TMY3 format.csv +0 -0
  340. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/Burlington, United States SolarAnywhere Time Series 20210101 to 20210103 Lat_44_4675 Lon_-73_2075 SA format.csv +0 -0
  341. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/Burlington, United States SolarAnywhere Typical GHI Year Lat_44_465 Lon_-73_205 SA format.csv +0 -0
  342. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/CPS SCH275KTL-DO-US-800-250kW_275kVA_1.OND +0 -0
  343. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/CRNS0101-05-2019-AZ_Tucson_11_W.txt +0 -0
  344. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/CRN_with_problems.txt +0 -0
  345. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/ET-M772BH550GL.PAN +0 -0
  346. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/NLD_Amsterdam062400_IWEC.epw +0 -0
  347. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/PVsyst_demo.csv +0 -0
  348. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/PVsyst_demo_model.csv +0 -0
  349. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/SRML-day-EUPO1801.txt +0 -0
  350. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/abq19056.dat +0 -0
  351. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/bishop88_numerical_precision.csv +0 -0
  352. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/bsrn-lr0100-pay0616.dat +0 -0
  353. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/bsrn-pay0616.dat.gz +0 -0
  354. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/cams_mcclear_1min_verbose.csv +0 -0
  355. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/cams_mcclear_monthly.csv +0 -0
  356. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/cams_radiation_1min_verbose.csv +0 -0
  357. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/cams_radiation_monthly.csv +0 -0
  358. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/detect_clearsky_data.csv +0 -0
  359. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/detect_clearsky_threshold_data.csv +0 -0
  360. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/greensboro_kimber_soil_manwash.dat +0 -0
  361. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/greensboro_kimber_soil_nowash.dat +0 -0
  362. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/inverter_fit_snl_meas.csv +0 -0
  363. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/inverter_fit_snl_sim.csv +0 -0
  364. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/ivtools_numdiff.csv +0 -0
  365. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/midc_20181014.txt +0 -0
  366. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/midc_raw_20181018.txt +0 -0
  367. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/midc_raw_short_header_20191115.txt +0 -0
  368. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/msn19056.dat +0 -0
  369. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/precise_iv_curves1.json +0 -0
  370. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/precise_iv_curves2.json +0 -0
  371. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/precise_iv_curves_parameter_sets1.csv +0 -0
  372. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/precise_iv_curves_parameter_sets2.csv +0 -0
  373. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/pvgis_hourly_Timeseries_45.000_8.000_SA2_10kWp_CIS_5_2a_2013_2014.json +0 -0
  374. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/pvgis_hourly_Timeseries_45.000_8.000_SA_30deg_0deg_2016_2016.csv +0 -0
  375. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/pvgis_tmy_meta.json +0 -0
  376. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/pvwatts_8760_rackmount.csv +0 -0
  377. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/pvwatts_8760_roofmount.csv +0 -0
  378. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/singleaxis_tracker_wslope.csv +0 -0
  379. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/spectrl2_example_spectra.csv +0 -0
  380. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/surfrad-slv16001.dat +0 -0
  381. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/test_psm3_2017.csv +0 -0
  382. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/test_psm3_2019_5min.csv +0 -0
  383. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/test_psm3_tmy-2017.csv +0 -0
  384. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/test_read_psm3.csv +0 -0
  385. {pvlib-0.11.1/pvlib → pvlib-0.12.0/tests}/data/test_read_pvgis_horizon.csv +0 -0
  386. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/iotools/__init__.py +0 -0
  387. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/iotools/test_solcast.py +0 -0
  388. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/ivtools/__init__.py +0 -0
  389. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/spectrum/__init__.py +0 -0
  390. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/spectrum/test_response.py +0 -0
  391. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/spectrum/test_spectrl2.py +0 -0
  392. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/test_albedo.py +0 -0
  393. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/test_iam.py +0 -0
  394. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/test_pvarray.py +0 -0
  395. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/test_scaling.py +0 -0
  396. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/test_shading.py +0 -0
  397. {pvlib-0.11.1/pvlib → pvlib-0.12.0}/tests/test_transformer.py +0 -0
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: pvlib
3
- Version: 0.11.1
3
+ Version: 0.12.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-email: pvlib python Developers <pvlib-admin@googlegroups.com>
@@ -44,6 +44,7 @@ Requires-Dist: pillow; extra == "doc"
44
44
  Requires-Dist: sphinx-toggleprompt==0.5.2; extra == "doc"
45
45
  Requires-Dist: sphinx-favicon; extra == "doc"
46
46
  Requires-Dist: solarfactors; extra == "doc"
47
+ Requires-Dist: sphinx-hoverxref~=1.4.2; extra == "doc"
47
48
  Provides-Extra: test
48
49
  Requires-Dist: pytest; extra == "test"
49
50
  Requires-Dist: pytest-cov; extra == "test"
@@ -55,6 +56,8 @@ Requires-Dist: pytest-remotedata; extra == "test"
55
56
  Requires-Dist: packaging; extra == "test"
56
57
  Provides-Extra: all
57
58
  Requires-Dist: pvlib[doc,optional,test]; extra == "all"
59
+ Dynamic: home-page
60
+ Dynamic: license-file
58
61
 
59
62
  pvlib python is a community developed toolbox that provides a set of
60
63
  functions and classes for simulating the performance of photovoltaic
@@ -81,7 +81,7 @@ Contributing
81
81
  ============
82
82
 
83
83
  We need your help to make pvlib-python a great tool!
84
- Please see the [Contributing page](http://pvlib-python.readthedocs.io/en/stable/contributing.html) for more on how you can contribute.
84
+ Please see the [Contributing page](https://pvlib-python.readthedocs.io/en/stable/contributing/index.html) for more on how you can contribute.
85
85
  The long-term success of pvlib-python requires substantial community support.
86
86
 
87
87
 
@@ -47,7 +47,7 @@ import pvlib
47
47
  import pandas as pd
48
48
  import numpy as np
49
49
  import matplotlib.pyplot as plt
50
- from matplotlib.dates import ConciseDateFormatter
50
+ from matplotlib.dates import DateFormatter
51
51
 
52
52
  pitch = 4 # meters
53
53
  width = 1.5 # meters
@@ -235,10 +235,6 @@ for k, shade_losses in shade_losses_per_module.items():
235
235
  ax1.plot(times, shade_losses, label=k, linestyle=linestyle)
236
236
  ax1.legend(loc="upper center")
237
237
  ax1.grid()
238
- ax1.set_xlabel("Time")
239
- ax1.xaxis.set_major_formatter(
240
- ConciseDateFormatter("%H:%M", tz="Europe/Madrid")
241
- )
242
238
  ax1.set_ylabel(r"$P_{out}$ losses")
243
239
  ax1.set_title("Per module")
244
240
 
@@ -248,9 +244,7 @@ for k, shade_losses in shade_losses_per_row.items():
248
244
  ax2.legend(loc="upper center")
249
245
  ax2.grid()
250
246
  ax2.set_xlabel("Time")
251
- ax2.xaxis.set_major_formatter(
252
- ConciseDateFormatter("%H:%M", tz="Europe/Madrid")
253
- )
247
+ ax2.xaxis.set_major_formatter(DateFormatter("%H:%M", tz="Europe/Madrid"))
254
248
  ax2.set_ylabel(r"$P_{out}$ losses")
255
249
  ax2.set_title("Per row")
256
250
  fig.tight_layout()
@@ -0,0 +1,10 @@
1
+ /* Overrides for sphinx-hoverxref since it does not support a native dark theme, see */
2
+ /* https://github.com/readthedocs/sphinx-hoverxref/issues/231 */
3
+ /* Inspired by https://github.com/pybamm-team/PyBaMM/pull/3083 */
4
+
5
+ /* These will ensure that the tooltip inherits the pydata-sphinx-theme colours */
6
+
7
+ .tooltipster-sidetip.tooltipster-shadow.tooltipster-shadow-custom .tooltipster-content {
8
+ background-color: var(--pst-color-background) !important;
9
+ color: var(--pst-color-text-base) !important;
10
+ }
@@ -56,11 +56,30 @@ extensions = [
56
56
  'sphinx_gallery.gen_gallery',
57
57
  'sphinx_toggleprompt',
58
58
  'sphinx_favicon',
59
+ 'hoverxref.extension',
59
60
  ]
60
61
 
61
62
  mathjax3_config = {'chtml': {'displayAlign': 'left',
62
63
  'displayIndent': '2em'}}
63
64
 
65
+ # Example configuration for intersphinx: refer to the Python standard library.
66
+ intersphinx_mapping = {
67
+ 'python': ('https://docs.python.org/3/', None),
68
+ 'numpy': ('https://numpy.org/doc/stable/', None),
69
+ 'scipy': ('https://docs.scipy.org/doc/scipy/reference/', None),
70
+ 'pandas': ('https://pandas.pydata.org/pandas-docs/stable', None),
71
+ 'matplotlib': ('https://matplotlib.org/stable', None),
72
+ }
73
+
74
+ # Enable hover tooltips
75
+ hoverxref_auto_ref = True
76
+ hoverxref_roles = [
77
+ "class", "meth", "func", "ref", "term", "obj", "mod", "data"
78
+ ]
79
+ hoverxref_role_types = dict.fromkeys(hoverxref_roles, "tooltip")
80
+ hoverxref_domains = ["py"]
81
+ hoverxref_intersphinx = list(intersphinx_mapping.keys())
82
+
64
83
  napoleon_use_rtype = False # group rtype on same line together with return
65
84
 
66
85
  # Add any paths that contain templates here, relative to this directory.
@@ -263,6 +282,8 @@ def setup(app):
263
282
  app.add_css_file("reference_format.css")
264
283
  # Add a warning banner at the top of the page if viewing the "latest" docs
265
284
  app.add_js_file("version-alert.js")
285
+ # Match the color theme of tooltips to PyData Sphinx Theme light/dark mode
286
+ app.add_css_file("tooltipster_color_theming.css")
266
287
 
267
288
  # -- Options for LaTeX output ---------------------------------------------
268
289
 
@@ -357,15 +378,6 @@ texinfo_documents = [
357
378
  # If true, do not generate a @detailmenu in the "Top" node's menu.
358
379
  # texinfo_no_detailmenu = False
359
380
 
360
- # Example configuration for intersphinx: refer to the Python standard library.
361
- intersphinx_mapping = {
362
- 'python': ('https://docs.python.org/3/', None),
363
- 'numpy': ('https://numpy.org/doc/stable/', None),
364
- 'scipy': ('https://docs.scipy.org/doc/scipy/reference/', None),
365
- 'pandas': ('https://pandas.pydata.org/pandas-docs/stable', None),
366
- 'matplotlib': ('https://matplotlib.org/stable', None),
367
- }
368
-
369
381
  ipython_warning_is_error = False
370
382
 
371
383
  # suppress "WARNING: Footnote [1] is not referenced." messages
@@ -153,8 +153,7 @@ We strongly recommend using virtual environments for development.
153
153
  Virtual environments make it easier to switch between different
154
154
  versions of software. This `scientific-python.org guide
155
155
  <https://learn.scientific-python.org/development/tutorials/dev-environment/>`_
156
- is a good reference for virtual environments. The pvlib-python `installation
157
- user guide <https://pvlib-python.readthedocs.io/en/stable/user_guide/
158
- installation.html#set-up-a-virtual-environment>`_ also provides instructions on
156
+ is a good reference for virtual environments. The pvlib-python
157
+ :ref:`installation guide <setupenvironment>` also provides instructions on
159
158
  setting up a virtual environment. If this is your first pull request, don't
160
159
  worry about using a virtual environment.
@@ -1,3 +1,5 @@
1
+ .. _contributing:
2
+
1
3
  ============
2
4
  Contributing
3
5
  ============
@@ -0,0 +1,352 @@
1
+ .. _documentation-and-style-guide:
2
+
3
+ Documentation and style guide
4
+ =============================
5
+
6
+ .. _code-style:
7
+
8
+ Code style
9
+ ~~~~~~~~~~
10
+
11
+ pvlib python generally follows the `PEP 8 -- Style Guide for Python Code
12
+ <https://www.python.org/dev/peps/pep-0008/>`_. Maximum line length for code
13
+ is 79 characters.
14
+
15
+ pvlib python uses a mix of full and abbreviated variable names. See
16
+ :ref:`nomenclature`.
17
+ Prefer full names for new contributions. This is especially important
18
+ for the API. Abbreviations can be used within a function to improve the
19
+ readability of formulae.
20
+
21
+ Set your editor to strip extra whitespace from line endings. This
22
+ prevents the git commit history from becoming cluttered with whitespace
23
+ changes.
24
+
25
+ Please see :ref:`Documentation` for information specific to documentation
26
+ style.
27
+
28
+ Remove any ``logging`` calls and ``print`` statements that you added
29
+ during development. ``warning`` is ok.
30
+
31
+ We typically use GitHub's
32
+ "`squash and merge <https://help.github.com/articles/about-pull-request-merges/#squash-and-merge-your-pull-request-commits>`_"
33
+ feature to merge your pull request into pvlib. GitHub will condense the
34
+ commit history of your branch into a single commit when merging into
35
+ pvlib-python/main (the commit history on your branch remains
36
+ unchanged). Therefore, you are free to make commits that are as big or
37
+ small as you'd like while developing your pull request.
38
+
39
+
40
+ .. _documentation:
41
+
42
+ Documentation
43
+ ~~~~~~~~~~~~~
44
+
45
+ .. _documentation-style:
46
+
47
+ Documentation style
48
+ -------------------
49
+
50
+ Documentation must be written in
51
+ `numpydoc format <https://numpydoc.readthedocs.io/>`_ format which is rendered
52
+ using the `Sphinx Napoleon extension
53
+ <https://www.sphinx-doc.org/en/master/usage/extensions/napoleon.html>`_.
54
+
55
+ The numpydoc format includes a specification for the allowable input
56
+ types. Python's `duck typing <https://en.wikipedia.org/wiki/Duck_typing>`_
57
+ allows for multiple input types to work for many parameters. pvlib uses
58
+ the following generic descriptors as short-hand to indicate which
59
+ specific types may be used:
60
+
61
+ * dict-like : dict, OrderedDict, pd.Series
62
+ * numeric : scalar, np.array, pd.Series. Typically int or float dtype.
63
+ * array-like : np.array, pd.Series. Typically int or float dtype.
64
+
65
+ Parameters that specify a specific type require that specific input type.
66
+
67
+ Read the Docs will automatically build the documentation for each pull
68
+ request. Please confirm the documentation renders correctly by following
69
+ the ``docs/readthedocs.org:pvlib-python`` link within the checks
70
+ status box at the bottom of the pull request.
71
+
72
+
73
+ .. _documentation-units:
74
+
75
+ Parameter names and units
76
+ -------------------------
77
+
78
+ When specifying parameters and their units, please follow these guidelines:
79
+
80
+ - Use the recommended parameter name and units listed in the :ref:`nomenclature` where applicable.
81
+ - Enclose units in square brackets after the parameter description, e.g., ``Air temperature. [°C]``.
82
+ - Use unicode superscripts symbols for exponents, e.g. ``m⁻²``.
83
+
84
+ - Numbers: ``⁰``, ``¹``, ``²``, ``³``, ``⁴``, ``⁵``, ``⁶``, ``⁷``, ``⁸``, ``⁹``
85
+ - Negative exponent: ``⁻``
86
+ - Degree symbol: ``°``
87
+
88
+ - Link to a brief description in the :ref:`nomenclature` section if it exists, via the sphinx role ``:term:`glossary_term```. For example, to document ``dni`` use:
89
+
90
+ .. code-block:: rst
91
+
92
+ dni : numeric
93
+ Direct normal irradiance, see :term:`dni`. [Wm⁻²]
94
+
95
+
96
+ .. _reference_style:
97
+
98
+ References
99
+ ----------
100
+ pvlib-python is transitioning to the `IEEE reference style <https://journals.ieeeauthorcenter.ieee.org/wp-content/uploads/sites/7/IEEE_Reference_Guide.pdf>`_,
101
+ which should be used in all new contributions. At minimum, a reference should
102
+ include:
103
+
104
+ * Author list (for more than six authors, list only the first with et al.)
105
+ * Publication title
106
+ * Publisher (journal title, laboratory name, etc.)
107
+ * Year of publication
108
+ * DOI (if available)
109
+
110
+ The recommended citation style for several media types is as follows:
111
+
112
+ **Journal article**:
113
+
114
+ Author initials and surname, "Title of article," abbreviated journal
115
+ title, vol. number, issue number, page numbers, Abbreviated Month Year.
116
+
117
+ **Book**:
118
+
119
+ Author initials. Author Surname, "Chapter title" in Book Title, xth ed.
120
+ City of Publisher, (only U.S. State), Country: Abbrev. of Publisher, year,
121
+ ch. x, sec. x, pp. xxx–xxx.
122
+
123
+ **Technical report**:
124
+
125
+ Author initials. Author Surname, "Report title" Abbrev. publisher name,
126
+ City of publisher, Abbrev. State, Country, Rep. xxx, year
127
+
128
+ The example below shows how to cite material and generate a reference list
129
+ using the IEEE style in a docstring::
130
+
131
+ This is the recommended citation for the pvlib-python project [1]_. There
132
+ are also some conference papers linked to pvlib, for example [2]_.
133
+
134
+ Other types of reference you may find in the pvlib-python documentation
135
+ include books [3]_, technical reports [4]_, and websites [5]_.
136
+
137
+ References
138
+ ----------
139
+ .. [1] K. Anderson, C. Hansen, W. Holmgren, A. Jensen, M. Mikofski,
140
+ and A Driesse. "pvlib python: 2023 project update." J. Open Source
141
+ Softw. vol. 8, no. 92, pp. 5994, Dec 2023,
142
+ :doi:`10.21105/joss.05994`.
143
+
144
+ .. [2] J. S. Stein, "The Photovoltaic Performance Modeling Collaborative
145
+ (PVPMC)," In Proc. 38th IEEE Photovoltaic Specialists Conference
146
+ (PVSC), Austin, TX, USA, 2012, pp. 3048-3052,
147
+ :doi:`10.1109/PVSC.2012.6318225`.
148
+
149
+ .. [3] J. A. Duffie and W. A. Beckman, "Solar Radiation" in Solar
150
+ Engineering of Thermal Processes, 3rd ed, New York, USA, J. Wiley
151
+ and Sons, 2006, ch. 1, sec. 1.5, pp.9-11.
152
+
153
+ .. [4] R. Bird and C. Riordan, "Simple solar spectral model for direct and
154
+ diffuse irradiance on horizontal and tilted planes at the earth’s
155
+ surface for cloudless atmospheres", NREL, Golden, CO, USA, Technical
156
+ Report TR-215-2436, 1984, :doi:`10.2172/5986936`.
157
+
158
+ .. [5] "PVPMC Home." Sandia National Laboratories PV Performance Modeling
159
+ Collaborative. Accessed: Oct. 17, 2024. [Online.] Available:
160
+ <https://pvpmc.sandia.gov/>_
161
+
162
+ Things to note:
163
+
164
+ * In-text numeric citations are a number inside square brackets, followed
165
+ by an underscore, e.g. ``[1]_``.
166
+ * To include a DOI, you can use pvlib's custom ``:doi:``
167
+ `Sphinx role <https://www.sphinx-doc.org/en/master/usage/restructuredtext/roles.html>`_,
168
+ followed by the DOI inside a set of backticks.
169
+
170
+
171
+ .. _building-the-documentation:
172
+
173
+ Building the documentation
174
+ --------------------------
175
+
176
+ Building the documentation locally is useful for testing out changes to the
177
+ documentation's source code without having to repeatedly update a PR and have
178
+ Read the Docs build it for you. Building the docs locally requires installing
179
+ pvlib python as an editable library (see :ref:`installation` for instructions).
180
+ First, install the ``doc`` dependencies specified in the
181
+ ``EXTRAS_REQUIRE`` section of
182
+ `setup.py <https://github.com/pvlib/pvlib-python/blob/main/setup.py>`_.
183
+ An easy way to do this is with::
184
+
185
+ pip install pvlib[doc] # on Mac: pip install "pvlib[doc]"
186
+
187
+ Note: Anaconda users may have trouble using the above command to update an
188
+ older version of docutils. If that happens, you can update it with ``conda``
189
+ (e.g. ``conda install docutils=0.21``) and run the above command again.
190
+
191
+ Once the ``doc`` dependencies are installed, navigate to ``/docs/sphinx`` and
192
+ execute::
193
+
194
+ make html
195
+
196
+ Be sure to skim through the output of this command because Sphinx might emit
197
+ helpful warnings about problems with the documentation source code.
198
+ If the build succeeds, it will make a new directory ``docs/sphinx/build``
199
+ with the documentation's homepage located at ``build/html/index.html``.
200
+ This file can be opened with a web browser to view the local version
201
+ like any other website. Other output formats are available; run ``make help``
202
+ for more information.
203
+
204
+ Note that Windows users need not have the ``make`` utility installed as pvlib
205
+ includes a ``make.bat`` batch file that emulates its interface.
206
+
207
+
208
+ .. _example-docstring:
209
+
210
+ Example Docstring
211
+ -----------------
212
+
213
+ Here is a template for a function docstring that encapsulates the main
214
+ features that may be used in any docstring. Note that not all sections are
215
+ required for every function.
216
+
217
+ .. code-block:: python
218
+
219
+ def example_function(poa_global, exponents, degree_symbol, time_ref='UT',
220
+ optional_arg=None):
221
+ r"""
222
+ One-sentence summary of the function (no citations).
223
+
224
+ A longer description of the function. This can include citations
225
+ (references) to literature [1]_, websites [2]_, and other code elements
226
+ such as functions (:py:func:`pvlib.location.lookup_altitude`) and
227
+ classes (:py:class:`pvlib.location.Location`).
228
+
229
+ .. versionadded:: 0.0.1
230
+ There are many more purpose-specific directives, admonitions and such
231
+ available at `this link <admonitions>`_. E.g.: ``.. versionchanged::``,
232
+ ``.. deprecated::``, ``.. note::`` and ``.. warning::``.
233
+
234
+ .. _admonitions: https://www.sphinx-doc.org/en/master/usage/restructuredtext/directives.html#admonitions-messages-and-warnings
235
+
236
+ Parameters
237
+ ----------
238
+ poa_global : numeric
239
+ Plane-of-array global irradiance, see :term:`poa_global`. [Wm⁻²].
240
+ exponents : array-like
241
+ A list of exponents. [x⁰¹²³⁴⁵⁶⁷⁸⁹⁻].
242
+ degree_symbol : pandas.Series or pandas.DataFrame
243
+ It's different from superscript zero. [°].
244
+ time_ref : ``'UT'`` or ``'TST'``, default: ``'UT'``
245
+ ``'UT'`` (universal time) or ``'TST'`` (True Solar Time).
246
+ optional_arg : integer, optional
247
+ A description of ``optional_arg``. [Unitless].
248
+
249
+ Specify a suitable datatype for each parameter. Other common
250
+ data types include ``str``, ``bool``, ``float``, ``numeric``
251
+ and ``pandas.DatetimeIndex``.
252
+
253
+ Returns
254
+ -------
255
+ name : numeric
256
+ A description of the return value.
257
+
258
+ Raises
259
+ ------
260
+ ValueError
261
+ If ``poa_global`` is negative.
262
+ KeyError
263
+ If ``time_ref`` does not exist.
264
+
265
+ Notes
266
+ -----
267
+ This section can include additional information about the function.
268
+
269
+ For example, an equation using LaTeX markup:
270
+
271
+ .. math::
272
+
273
+ a = \left(\frac{b}{c}\right)^2
274
+
275
+ where :math:`a` is the result of the equation, and :math:`b` and :math:`c`
276
+ are inputs.
277
+
278
+ Or a figure with a caption:
279
+
280
+ .. figure:: ../../_images/pvlib_logo_horiz.png
281
+ :scale: 10%
282
+ :alt: alternate text
283
+ :align: center
284
+
285
+ Figure caption.
286
+
287
+ See Also
288
+ --------
289
+ pvlib.location.lookup_altitude, pvlib.location.Location
290
+
291
+ Examples
292
+ --------
293
+ >>> example_function(1, 1, pd.Series([1]), "TST", 2)
294
+ 'Something'
295
+
296
+ References
297
+ ----------
298
+ A IEEE citation to a relevant reference. You may use an automatic
299
+ citation generator to format the citation correctly.
300
+
301
+ .. [1] Anderson, K., Hansen, C., Holmgren, W., Jensen, A., Mikofski, M.,
302
+ and Driesse, A. "pvlib python: 2023 project update." Journal of Open
303
+ Source Software, 8(92), 5994, (2023). :doi:`10.21105/joss.05994`.
304
+ .. [2] J. Smith and J. Doe. "Obama inaugurated as President." CNN.com.
305
+ Accessed: Feb. 1, 2009. [Online.]
306
+ Available: http://www.cnn.com/POLITICS/01/21/obama_inaugurated/index.html
307
+ """
308
+ a = "Some"
309
+ b = "thing"
310
+ return a + b
311
+
312
+ A preview of how this docstring would render in the documentation can be seen in the
313
+ following file: :download:`Example docstring<../_images/example_function_screenshot.png>`.
314
+
315
+ Remember that to show the docstring in the documentation, you must list
316
+ the function in the appropriate ``.rst`` file in the ``docs/sphinx/source/reference`` folder.
317
+
318
+ .. _example-gallery:
319
+
320
+ Example Gallery
321
+ ---------------
322
+
323
+ The example gallery uses `sphinx-gallery <https://sphinx-gallery.github.io/>`_
324
+ and is generated from script files in the
325
+ `docs/examples <https://github.com/pvlib/pvlib-python/tree/main/docs/examples>`_
326
+ directory. sphinx-gallery will execute example files that start with
327
+ ``plot_`` and capture the output.
328
+
329
+ Here is a starter template for new examples:
330
+
331
+ .. code-block:: python
332
+
333
+ """
334
+ Page Title
335
+ ==========
336
+
337
+ A sentence describing the example.
338
+ """
339
+
340
+ # %%
341
+ # Explanatory text about the example, what it does, why it does it, etc.
342
+ # Text in the comment block before the first line of code `import pvlib`
343
+ # will be printed to the example's webpage.
344
+
345
+ import pvlib
346
+ import matplotlib.pyplot as plt
347
+
348
+ plt.scatter([1, 2, 3], [4, 5, 6])
349
+ plt.show()
350
+
351
+ For more details, see the sphinx-gallery
352
+ `docs <https://sphinx-gallery.github.io/stable/syntax.html#embedding-rst>`_.
@@ -1,7 +1,7 @@
1
1
  .. _testing:
2
2
 
3
- Testing
4
- =======
3
+ Testing and benchmarking
4
+ ========================
5
5
 
6
6
  .. _overview:
7
7
 
@@ -11,7 +11,7 @@ Overview
11
11
  Developers **must** include comprehensive tests for any additions or
12
12
  modifications to pvlib. New unit test code should be placed in the
13
13
  corresponding test module in the
14
- `pvlib/tests <https://github.com/pvlib/pvlib-python/tree/main/pvlib/tests>`_
14
+ `tests <https://github.com/pvlib/pvlib-python/tree/main/tests>`_
15
15
  directory.
16
16
 
17
17
  A pull request will automatically run the tests for you on a variety of
@@ -20,26 +20,26 @@ typically more efficient to run and debug the tests in your own local
20
20
  environment.
21
21
 
22
22
  To run the tests locally, install the ``test`` dependencies specified in the
23
- `setup.py <https://github.com/pvlib/pvlib-python/blob/main/setup.py>`_
23
+ `pyproject.toml <https://github.com/pvlib/pvlib-python/blob/main/pyproject.toml>`_
24
24
  file. See :ref:`installation` instructions for more information.
25
25
 
26
26
  pvlib's unit tests can easily be run by executing ``pytest`` on the
27
- pvlib directory::
27
+ tests directory::
28
28
 
29
- pytest pvlib
29
+ pytest tests
30
30
 
31
31
  or, for a single module::
32
32
 
33
- pytest pvlib/tests/test_clearsky.py
33
+ pytest tests/test_clearsky.py
34
34
 
35
35
  or, for a single test::
36
36
 
37
- pytest pvlib/tests/test_clearsky.py::test_ineichen_nans
37
+ pytest tests/test_clearsky.py::test_ineichen_nans
38
38
 
39
39
  We suggest using pytest's ``--pdb`` flag to debug test failures rather
40
40
  than using ``print`` or ``logging`` calls. For example::
41
41
 
42
- pytest pvlib --pdb
42
+ pytest tests --pdb
43
43
 
44
44
  will drop you into the
45
45
  `pdb debugger <https://docs.python.org/3/library/pdb.html>`_ at the
@@ -50,7 +50,7 @@ to the test suite (with rare exceptions).
50
50
  To include all network-dependent tests, include the ``--remote-data`` flag to
51
51
  your ``pytest`` call::
52
52
 
53
- pytest pvlib --remote-data
53
+ pytest tests --remote-data
54
54
 
55
55
  And consider adding ``@pytest.mark.remote_data`` to any network dependent test
56
56
  you submit for a PR.
@@ -26,7 +26,7 @@ pvlib python
26
26
  that-use-pvlib-python>`_ page for inspiration and listing of your
27
27
  application.
28
28
 
29
- There is a :ref:`variable naming convention <variables_style_rules>` to
29
+ There is a :ref:`variable naming convention <nomenclature>` to
30
30
  ensure consistency throughout the library.
31
31
 
32
32
 
@@ -11,8 +11,9 @@ Airmass and atmospheric models
11
11
  atmosphere.get_relative_airmass
12
12
  atmosphere.pres2alt
13
13
  atmosphere.alt2pres
14
+ atmosphere.tdew_from_rh
15
+ atmosphere.rh_from_tdew
14
16
  atmosphere.gueymard94_pw
15
- atmosphere.first_solar_spectral_correction
16
17
  atmosphere.bird_hulstrom80_aod_bb
17
18
  atmosphere.kasten96_lt
18
19
  atmosphere.angstrom_aod_at_lambda
@@ -8,7 +8,6 @@ Spectrum
8
8
 
9
9
  spectrum.spectrl2
10
10
  spectrum.get_example_spectral_response
11
- spectrum.get_am15g
12
11
  spectrum.get_reference_spectra
13
12
  spectrum.calc_spectral_mismatch_field
14
13
  spectrum.spectral_factor_caballero
@@ -112,7 +112,6 @@ on the information in the associated :py:class:`~pvsystem.PVSystem` object.
112
112
  modelchain.ModelChain.infer_dc_model
113
113
  modelchain.ModelChain.infer_ac_model
114
114
  modelchain.ModelChain.infer_aoi_model
115
- modelchain.ModelChain.infer_spectral_model
116
115
  modelchain.ModelChain.infer_temperature_model
117
116
  modelchain.ModelChain.infer_losses_model
118
117
 
@@ -12,7 +12,6 @@ Sandia array performance model (SAPM)
12
12
 
13
13
  pvsystem.sapm
14
14
  pvsystem.sapm_effective_irradiance
15
- pvsystem.sapm_spectral_loss
16
15
  spectrum.spectral_factor_sapm
17
16
  inverter.sandia
18
17
  temperature.sapm_cell
@@ -3,9 +3,6 @@
3
3
  Tracking
4
4
  ========
5
5
 
6
- Functions
7
- ---------
8
-
9
6
  .. autosummary::
10
7
  :toctree: generated/
11
8
 
@@ -3,7 +3,7 @@
3
3
  Transformer losses
4
4
  ==================
5
5
 
6
- Methods to account for losses in transformers
6
+ Functions to account for losses in transformers
7
7
 
8
8
  .. autosummary::
9
9
  :toctree: generated/
@@ -0,0 +1,34 @@
1
+ .. _user_guide:
2
+
3
+ ==========
4
+ User Guide
5
+ ==========
6
+
7
+ This user guide is an overview and explains some of the key features of pvlib.
8
+
9
+ .. toctree::
10
+ :caption: Getting started
11
+ :maxdepth: 2
12
+
13
+ package_overview
14
+ installation
15
+ introtutorial
16
+
17
+ .. toctree::
18
+ :caption: Modeling topics
19
+ :maxdepth: 2
20
+
21
+ pvsystem
22
+ modelchain
23
+ timetimezones
24
+ bifacial
25
+ clearsky
26
+ weather_data
27
+ singlediode
28
+
29
+ .. toctree::
30
+ :caption: Extras
31
+ :maxdepth: 2
32
+
33
+ nomenclature
34
+ faq