8000 Change Variables and Symbols page into a Glossary of terms by RDaxini · Pull Request #2234 · pvlib/pvlib-python · GitHub
[go: up one dir, main page]

Skip to content

Change Variables and Symbols page into a Glossary of terms #2234

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 30 commits into from
Oct 31, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
3ccef46
initial test
RDaxini Sep 29, 2024
a7ba8ea
Update irradiance.py
RDaxini Sep 29, 2024
678d7e4
update list of terms
RDaxini Oct 9, 2024
ef311d0
update dni description in irradiance.py
RDaxini Oct 9, 2024
2360025
minor edits, aoi definition
RDaxini Oct 9, 2024
a68d27e
Update glossary.rst
RDaxini Oct 9, 2024
9b6f7b0
Update glossary.rst
RDaxini Oct 9, 2024
4b90bd4
remove in-text dni term glossary link
RDaxini Oct 9, 2024
80175c3
delete one surface_tilt definition
RDaxini Oct 9, 2024
34d87c4
review: dni definition
RDaxini Oct 9, 2024
ffa60c6
remove old files, add general text to glossary
RDaxini Oct 10, 2024
5297a08
remove first bullet, add colon, on SoDa line
RDaxini Oct 10, 2024
8e578e5
Update glossary.rst
RDaxini Oct 10, 2024
fc4d2e7
conciseness (suggestion)
RDaxini Oct 10, 2024
816f43d
updated aoi definition #2247
RDaxini Oct 19, 2024
7d6a0ac
update references old variables style rules page
RDaxini Oct 19, 2024
3c6ef52
Merge remote-tracking branch 'upstream/main' into glossary
RDaxini Oct 19, 2024
7329393
remove old page link from v0.3.0 whatsnew
RDaxini Oct 19, 2024
70957f0
Update index.rst
RDaxini Oct 19, 2024
65de172
Update v0.11.2.rst
RDaxini Oct 19, 2024
21d6115
Update docs/sphinx/source/user_guide/glossary.rst
RDaxini Oct 19, 2024
34c155a
Merge remote-tracking branch 'upstream/main' into glossary
RDaxini Oct 20, 2024
ff9383a
Update docs/sphinx/source/contributing/style_guide.rst
RDaxini Oct 21, 2024
d5dca77
add underscore
RDaxini Oct 30, 2024
eae6e48
changed reference label
RDaxini Oct 30, 2024
3491f26
update labels
RDaxini Oct 30, 2024
637d250
name: nomenclature, update labels
RDaxini Oct 30, 2024
dc001fa
update whatsnew wording
RDaxini Oct 30, 2024
72f2f96
update file name
RDaxini Oct 30, 2024
3ec3cb3
Merge branch 'main' into glossary
RDaxini Oct 31, 2024
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
Next Next commit
initial test
  • Loading branch information
RDaxini committed Sep 29, 2024
commit 3ccef46a3dbeebdd61f13917865fa81eed6fbf89
15 changes: 15 additions & 0 deletions docs/sphinx/source/user_guide/glossary.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
.. glossary:

Glossary
========

.. glossary::

dni
Direct Normal Irradiance [Wm⁻²]. Amount of radiation received per unit
area by a surface perpendicular (normal) to the sun's rays that
propagate in a straight line from the sun.

surface_tilt
Panel tilt from horizontal [°]. For example, a surface facing up = 0°,
surface facing horizon = 90°.
1 change: 1 addition & 0 deletions docs/sphinx/source/user_guide/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,6 @@ User Guide
bifacial
weather_data
variables_style_rules
glossary
singlediode
faq
10 changes: 10 additions & 0 deletions pvlib/irradiance.py
Original file line number Diff line number Diff line change
Expand Up @@ -745,6 +745,10 @@ def haydavies(surface_tilt, surface_azimuth, dhi, dni, dni_extra,
defined as degrees from horizontal (e.g. surface facing up = 0,
surface facing horizon = 90)

surface_tilt : numeric
Panel tilt from the horizontal, in decimal degrees, see
:term:`surface_tilt`.

surface_azimuth : numeric
Surface azimuth angles in decimal degrees. The azimuth
convention is defined as degrees east of north (e.g. North=0,
Expand All @@ -756,6 +760,12 @@ def haydavies(surface_tilt, surface_azimuth, dhi, dni, dni_extra,
dni : numeric
Direct normal irradiance. [Wm⁻²]

dni : numeric
Direct normal irradiance, see :term:`dni`. [Wm⁻²]

dni : numeric
:term:`Direct Normal Irradiance<dni>` [Wm⁻²]

dni_extra : numeric
Extraterrestrial normal irradiance. [Wm⁻²]

Expand Down
Loading
0