Skip to content

Commit be52070

Browse files
committed
Fix spelling mistakes
1 parent 5995974 commit be52070

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/examples/agrivoltaics/plot_agrivoltaics_ground_irradiance.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@
1111
# For an overview of agrivPV concepts and performance, the reader
1212
# is referred to :doi:`10.69766/XAEU5008`.
1313
#
14-
# The first steps is to define the plant location and calculate solar position
14+
# The first step is to define the plant location and calculate solar position
1515
# and clearsky irradiance for a single day as an example.
1616
#
1717
# .. figure:: ../../_images/agrivoltaics_system.jpg
1818
# :align: center
1919
# :width: 75%
2020
# :alt: Photo of an agriPV system
2121
#
22-
# Photo of a agriPV system
22+
# Photo of an agriPV system.
2323
# *Source: Adam R. Jensen*
2424

2525
import pvlib
@@ -38,16 +38,16 @@
3838
# %%
3939
# Next, we need to define the plant layout:
4040

41-
height = 3 # []
41+
height = 3 # [m] height of torque above ground
4242
pitch = 12 # [m] row spacing
4343
row_width = 2 * 2 # [m] two modules in portrait, each 2 m long
44-
gcr = row_width / pitch # [-]
44+
gcr = row_width / pitch # [unitless]
4545
axis_azimuth = 0 # [degrees] north-south tracking axis
4646
max_angle = 50 # [degrees] maximum rotation angle
4747

4848
# %%
4949
# Before running the infinite sheds model, we need to know the orientation
50-
# of the trackers. For single-axis tracker, this can be calculated as follows:
50+
# of the trackers. For a single-axis tracker, this can be calculated as:
5151

5252
tracking_orientations = pvlib.tracking.singleaxis(
5353
apparent_zenith=solpos['apparent_zenith'],

0 commit comments

Comments
 (0)