Skip to content

Update zenith and azimuth angle documentation #2485

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 22 commits into from
Jul 29, 2025
Merged
Show file tree
Hide file tree
Changes from 17 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
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
39 changes: 29 additions & 10 deletions docs/sphinx/source/user_guide/extras/nomenclature.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,24 @@ There is a convention on consistent variable names throughout the library:

aoi
Angle of incidence. Angle between the surface normal vector and the
vector pointing towards the suns center
vector pointing towards the sun's center. [°]

aoi_projection
cos(aoi)
cos(aoi). When the sun is behind the surface, the value is negative.
For many uses, negative values must be set to zero.

ape
Average photon energy

apparent_zenith
Refraction-corrected solar zenith angle in degrees
Apparent (refraction-corrected) solar zenith angle. The solar
zenith angle describes the position of the sun relative to the vertical and is
defined as the angle between the sun’s rays and a vector pointing straight up
from the observer. [°]

apparent_elevation
Refraction-corrected solar elevation angle. This is the complement of
:term:`apparent_zenith` (90 - apparent_zenith). [°]

bhi
Beam/direct horizontal irradiance
Expand Down Expand Up @@ -87,10 +95,10 @@ There is a convention on consistent variable names throughout the library:
Sandia Array Performance Model IV curve parameters

latitude
Latitude
Latitude in decimal degrees. Positive north of equator, negative to south.

longitude
Longitude
Longitude in decimal degrees. Positive east of prime meridian, negative to west.

pac, ac
AC power
Expand Down Expand Up @@ -141,10 +149,15 @@ There is a convention on consistent variable names throughout the library:
Diode saturation current

solar_azimuth
Azimuth angle of the sun in degrees East of North
Azimuth angle of the sun in degrees East of North. The solar azimuth angle
describes the sun’s position along the horizon relative to a reference point.
The pvlib-python convention is defined as degrees east of north, so
North = 0°, East = 90°, South = 180°, West = 270°.

solar_zenith
Zenith angle of the sun in degrees
Zenith angle of the sun in degrees. This is the angle between the sun's rays and
the vertical direction. This is the complement of :term:`solar_elevation`
(90 - elevation). [°]

spectra
spectra_components
Expand All @@ -154,11 +167,17 @@ There is a convention on consistent variable names throughout the library:
is composed of direct and diffuse components.

surface_azimuth
Azimuth angle of the surface
Azimuth angle of the surface in degrees East of North. This angle describes the
horizontal orientation of the PV panel relative to a reference direction. The
pvlib-python convention is defined as degrees east (clockwise) of north, so
North = 0°, East = 90°, South = 180°, West = 270°. Other tools may use different
conventions.

surface_tilt
Panel tilt from horizontal [°]. For example, a surface facing up = 0°,
surface facing horizon = 90°.
Panel tilt from horizontal [°]. The surface tilt angle describes
the inclination of the PV panel and is defined as degrees from the horizontal
such that a surface facing up would have a surface tilt of 0°, and one facing
the horizon would be 90°. [°]

temp_air
Temperature of the air
Expand Down
4 changes: 4 additions & 0 deletions docs/sphinx/source/whatsnew/v0.13.1.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ Enhancements

Documentation
~~~~~~~~~~~~~
* Substantiate definitions of solar/surface azimuth/zenith and aoi on the
:ref:`nomenclature` page. (:issue:`2448`, :pull:`2503`)


Testing
Expand All @@ -45,3 +47,5 @@ Maintenance
Contributors
~~~~~~~~~~~~
* Elijah Passmore (:ghuser:`eljpsm`)
* Rajiv Daxini (:ghuser:`RDaxini`)
* Omar Bahamida (:ghuser:`OmarBahamida`)
Loading