Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 20 additions & 12 deletions pvlib/atmosphere.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,43 +171,51 @@ def get_relative_airmass(zenith, model='kastenyoung1989'):

References
----------
.. [1] Fritz Kasten. "A New Table and Approximation Formula for the
Relative Optical Air Mass". Technical Report 136, Hanover, N.H.:
U.S. Army Material Command, CRREL.
.. [1] Fritz Kasten, "A New Table and Approximation Formula for the
Relative Optical Air Mass," CRREL (U.S. Army), Hanover, NH, USA,
Technical Report 136, 1965.
:doi:`11681/5671`

.. [2] A. T. Young and W. M. Irvine, "Multicolor Photoelectric
Photometry of the Brighter Planets," The Astronomical Journal, vol.
72, pp. 945-950, 1967.
:doi:`10.2172/110366`
Copy link
Member

@RDaxini RDaxini Apr 2, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hmm... this doi did not work for me. Try:

Suggested change
:doi:`10.2172/110366`
:doi:`10.1086/110366`


.. [3] Fritz Kasten and Andrew Young. "Revised optical air mass tables
and approximation formula". Applied Optics 28:4735-4738
.. [3] Fritz Kasten and Andrew Young, "Revised optical air mass tables
and approximation formula," Applied Optics 28:4735-4738, 1989.
:doi:`10.1364/AO.28.004735`

.. [4] C. Gueymard, "Critical analysis and performance assessment of
clear sky solar irradiance models using theoretical and measured
data," Solar Energy, vol. 51, pp. 121-138, 1993.
:doi:`10.1016/0038-092X(93)90074-X`

.. [5] C. Gueymard, "Development and performance assessment of a clear
sky spectral radiation model,” in Proc. of the 22nd ASES Conference,
Solar ’93, 1993, pp. 433–438.

.. [6] A. T. Young, "AIR-MASS AND REFRACTION," Applied Optics, vol. 33,
pp. 1108-1110, Feb 1994.
.. [6] A. T. Young, "Air-Mass and Refraction," Applied Optics, vol. 33,
pp. 1108-1110, Feb. 1994.
:doi:`10.1364/AO.33.001108`

.. [7] Keith A. Pickering. "The Ancient Star Catalog". DIO 12:1, 20,
.. [7] Keith A. Pickering, "The Southern Limits of the Ancient Star Catalog
and the Commentary fo Hipparchos," DIO, vol. 12, pp. 3-27, Sept. 2002.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fo needs to be of (for some reason it won't let me suggest it)

Could consider adding the url: http://dioi.org/jc01.pdf


.. [8] C. Gueymard, "Direct solar transmittance and irradiance
predictions with broadband models. Part I: detailed theoretical
performance assessment". Solar Energy, vol 74, pp. 355-379, 2003.
:doi:`10.1016/S0038-092X(03)00195-6`

.. [9] C. Gueymard (2019). Clear-Sky Radiation Models and Aerosol Effects.
In: Polo, J., Martín-Pomares, L., Sanfilippo, A. (eds) Solar Resources
Mapping. Green Energy and Technology. Springer, Cham.
.. [9] C. Gueymard, "Clear-Sky Radiation Models and Aerosol Effects", in
Solar Resources Mapping: Fundamentals and Applications,
Polo, J., Martín-Pomares, L., Sanfilippo, A. (Eds), Cham, CH: Springer,
2019, pp. 137-182.
:doi:`10.1007/978-3-319-97484-2_5`

.. [10] Matthew J. Reno, Clifford W. Hansen and Joshua S. Stein, "Global
Horizontal Irradiance Clear Sky Models: Implementation and Analysis"
Sandia Report, (2012).
Sandia National Laboratories, Albuquerque, NM, USA, SAND2012-2389, 2012.
:doi:`10.2172/1039404`

'''

Expand Down