@@ -438,7 +438,7 @@ def get_cell_temperature(self, poa_global, temp_air, wind_speed, model,
438438 The irradiance that is converted to photocurrent in W/m^2.
439439 Only used for some models.
440440
441- ir_down: numeric, optional
441+ ir_down: numeric or tuple of numeric , optional
442442 Downwelling infrared radiation from the sky, measured on a
443443 horizontal surface in W/m^2. Only used in ``'faiman_rad'`` model.
444444
@@ -1228,7 +1228,8 @@ def get_cell_temperature(self, poa_global, temp_air, wind_speed, model,
12281228 Ambient dry bulb temperature [C]
12291229
12301230 wind_speed : numeric
1231- Wind speed [m/s], although can be ``None`` for ``'ross'`` model
1231+ Wind speed [m/s]
1232+ When ``model='ross'``, this input is ignored
12321233
12331234 model : str
12341235 Supported models include ``'sapm'``, ``'pvsyst'``,
@@ -1288,7 +1289,7 @@ def get_cell_temperature(self, poa_global, temp_air, wind_speed, model,
12881289 func = functools .partial (temperature .faiman_rad ,
12891290 ir_down = ir_down )
12901291 required = ()
1291- optional = _build_kwargs (['ir_down' , ' u0' , 'u1' ,
1292+ optional = _build_kwargs (['u0' , 'u1' ,
12921293 'sky_view' , 'emissivity' ],
12931294 self .temperature_model_parameters )
12941295 elif model == 'fuentes' :
0 commit comments