Skip to content

Commit debcc63

Browse files
committed
Remove trailing dot
1 parent d72a654 commit debcc63

File tree

7 files changed

+22
-22
lines changed

7 files changed

+22
-22
lines changed

pvlib/bifacial/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -365,11 +365,11 @@ def vf_row_ground_2d_integ(surface_tilt, gcr, x0=0, x1=1):
365365
= 0, surface facing horizon = 90. [degree]
366366
gcr : numeric
367367
Ratio of the row slant length to the row spacing (pitch). [unitless]
368-
x0 : numeric, default 0.
368+
x0 : numeric, default 0
369369
Position on the row's slant length, as a fraction of the slant length.
370370
x0=0 corresponds to the bottom of the row. x0 should be less than x1.
371371
[unitless]
372-
x1 : numeric, default 1.
372+
x1 : numeric, default 1
373373
Position on the row's slant length, as a fraction of the slant length.
374374
x1 should be greater than x0. [unitless]
375375

pvlib/clearsky.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -673,7 +673,7 @@ def detect_clearsky(measured, clearsky, times=None, window_length=10,
673673
Time series of measured GHI. [W/m2]
674674
clearsky : array or Series
675675
Time series of the expected clearsky GHI. [W/m2]
676-
times : DatetimeIndex or None, default None.
676+
times : DatetimeIndex or None, default None
677677
Times of measured and clearsky values. If None the index of measured
678678
will be used.
679679
window_length : int, default 10

pvlib/location.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,25 +29,25 @@ class Location:
2929
3030
Parameters
3131
----------
32-
latitude : float.
32+
latitude : float
3333
Positive is north of the equator.
3434
Use decimal degrees notation.
3535
36-
longitude : float.
36+
longitude : float
3737
Positive is east of the prime meridian.
3838
Use decimal degrees notation.
3939
40-
tz : str, int, float, or pytz.timezone, default 'UTC'.
40+
tz : str, int, float, or pytz.timezone, default 'UTC'
4141
See
4242
http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
4343
for a list of valid time zones.
4444
pytz.timezone objects will be converted to strings.
4545
ints and floats must be in hours from UTC.
4646
47-
altitude : float, default 0.
47+
altitude : float, default 0
4848
Altitude from sea level in meters.
4949
50-
name : None or string, default None.
50+
name : None or string, default None
5151
Sets the name attribute of the Location object.
5252
5353
See also
@@ -376,11 +376,11 @@ def lookup_altitude(latitude, longitude):
376376
377377
Parameters
378378
----------
379-
latitude : float.
379+
latitude : float
380380
Positive is north of the equator.
381381
Use decimal degrees notation.
382382
383-
longitude : float.
383+
longitude : float
384384
Positive is east of the prime meridian.
385385
Use decimal degrees notation.
386386

pvlib/modelchain.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,11 +90,11 @@ def basic_chain(times, latitude, longitude,
9090
times : DatetimeIndex
9191
Times at which to evaluate the model.
9292
93-
latitude : float.
93+
latitude : float
9494
Positive is north of the equator.
9595
Use decimal degrees notation.
9696
97-
longitude : float.
97+
longitude : float
9898
Positive is east of the prime meridian.
9999
Use decimal degrees notation.
100100
@@ -113,7 +113,7 @@ def basic_chain(times, latitude, longitude,
113113
Module parameters as defined by the SAPM. See pvsystem.sapm for
114114
details.
115115
116-
temperature_model_parameters : None, dict or Series.
116+
temperature_model_parameters : None, dict or Series
117117
Temperature model parameters as defined by the SAPM.
118118
See temperature.sapm_cell for details.
119119

pvlib/pvsystem.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ class PVSystem:
149149
module_parameters : None, dict or Series, default None
150150
Module parameters as defined by the SAPM, CEC, or other.
151151
152-
temperature_model_parameters : None, dict or Series, default None.
152+
temperature_model_parameters : None, dict or Series, default None
153153
Temperature model parameters as required by one of the models in
154154
pvlib.temperature (excluding poa_global, temp_air and wind_speed).
155155
@@ -288,9 +288,9 @@ def get_aoi(self, solar_zenith, solar_azimuth):
288288
289289
Parameters
290290
----------
291-
solar_zenith : float or Series.
291+
solar_zenith : float or Series
292292
Solar zenith angle.
293-
solar_azimuth : float or Series.
293+
solar_azimuth : float or Series
294294
Solar azimuth angle.
295295
296296
Returns
@@ -924,7 +924,7 @@ class Array:
924924
module_parameters : None, dict or Series, default None
925925
Parameters for the module model, e.g., SAPM, CEC, or other.
926926
927-
temperature_model_parameters : None, dict or Series, default None.
927+
temperature_model_parameters : None, dict or Series, default None
928928
Parameters for the module temperature model, e.g., SAPM, Pvsyst, or
929929
other.
930930
@@ -934,7 +934,7 @@ class Array:
934934
strings : int, default 1
935935
Number of parallel strings in the array.
936936
937-
array_losses_parameters : None, dict or Series, default None.
937+
array_losses_parameters : None, dict or Series, default None
938938
Supported keys are 'dc_ohmic_percent'.
939939
940940
name : None or str, default None
@@ -1081,9 +1081,9 @@ def get_irradiance(self, solar_zenith, solar_azimuth, dni, ghi, dhi,
10811081
10821082
Parameters
10831083
----------
1084-
solar_zenith : float or Series.
1084+
solar_zenith : float or Series
10851085
Solar zenith angle.
1086-
solar_azimuth : float or Series.
1086+
solar_azimuth : float or Series
10871087
Solar azimuth angle.
10881088
dni : float or Series
10891089
Direct normal irradiance. [W/m2]

pvlib/snow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def coverage_nrel(snowfall, poa_irradiance, temp_air, surface_tilt,
8888
threshold_snowfall : float, default 1.0
8989
Hourly snowfall above which snow coverage is set to the row's slant
9090
height. [cm/hr]
91-
can_slide_coefficient : float, default -80.
91+
can_slide_coefficient : float, default -80
9292
Coefficient to determine if snow can slide given irradiance and air
9393
temperature. [W/(m^2 C)]
9494
slide_amount_coefficient : float, default 0.197

pvlib/temperature.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -872,7 +872,7 @@ def noct_sam(poa_global, temp_air, wind_speed, noct, module_efficiency,
872872
:math:`\eta_{m} = \frac{V_{mp} I_{mp}}{A \times 1000 W/m^2}`
873873
where A is module area [m^2].
874874
875-
effective_irradiance : numeric, default None.
875+
effective_irradiance : numeric, default None
876876
The irradiance that is converted to photocurrent. If None,
877877
assumed equal to poa_global. [W/m^2]
878878

0 commit comments

Comments
 (0)