@@ -20,7 +20,7 @@ def temperature_gradient(temp_air, temp_height, hub_height):
2020
2121 Parameters
2222 ----------
23- temp_air : pandas.Series or array
23+ temp_air : pandas.Series or array-like
2424 Air temperature in K.
2525 temp_height : float
2626 Height in m for which the parameter `temp_air` applies.
@@ -70,9 +70,9 @@ def temperature_interpol(temp_air_1, temp_air_2,
7070
7171 Parameters
7272 ----------
73- temp_air_1 : pandas.Series or array
73+ temp_air_1 : pandas.Series or array-like
7474 Air temperature.
75- temp_air_2 : pandas.Series or array
75+ temp_air_2 : pandas.Series or array-like
7676 Second air temperature for interpolation.
7777 temp_air_height_1 : float
7878 Height for which the parameter `temp_air_1` applies.
@@ -116,13 +116,13 @@ def rho_barometric(pressure, pressure_height, hub_height, temp_hub):
116116
117117 Parameters
118118 ----------
119- pressure : pandas.Series or array
119+ pressure : pandas.Series or array-like
120120 Air pressure in Pa.
121121 pressure_height : float
122122 Height in m for which the parameter `pressure` applies.
123123 hub_height : float
124124 Hub height of wind turbine in m.
125- temp_hub : pandas.Series or array
125+ temp_hub : pandas.Series or array-like
126126 Air temperature at hub height in K.
127127
128128 Returns
@@ -172,13 +172,13 @@ def rho_ideal_gas(pressure, pressure_height, hub_height, temp_hub):
172172
173173 Parameters
174174 ----------
175- pressure : pandas.Series or array
175+ pressure : pandas.Series or array-like
176176 Air pressure in Pa.
177177 pressure_height : float
178178 Height in m for which the parameter `pressure` applies.
179179 hub_height : float
180180 Hub height of wind turbine in m.
181- temp_hub : pandas.Series or array
181+ temp_hub : pandas.Series or array-like
182182 Air temperature at hub height in K.
183183
184184 Returns
0 commit comments