Skip to content

Commit

Permalink
update tracker keyword in standards
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-springer committed Nov 19, 2024
1 parent a462328 commit 2731cd2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pvdeg/standards.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ def standoff(
other variables needed to access a particular weather dataset.
tilt : float, optional
Tilt angle of rack mounted PV system relative to horizontal. [°]
If tracker mounted, specify keyword '1_axis'
If single-axis tracker mounted, specify keyword 'single_axis'
azimuth : float, optional
Azimuth angle of PV system relative to north. [°]
sky_model : str, optional
Expand Down Expand Up @@ -318,7 +318,7 @@ def standoff(

solar_position = spectral.solar_position(weather_df, meta)

if tilt == "1_axis":
if tilt == "single_axis":
irradiance_dict = {
"sol_position": solar_position,
"axis_azimuth": azimuth,
Expand Down Expand Up @@ -766,4 +766,4 @@ def x_eff_temperature_estimate(
)
T_x_eff = T_0 - (T_0 - T_inf) * (1 - np.exp(-x_eff / x_0))

return T_x_eff
return T_x_eff

0 comments on commit 2731cd2

Please sign in to comment.