Radiative cooling#

linerate.equations.radiative_cooling.compute_radiative_cooling(surface_temperature, air_temperature, conductor_diameter, conductor_emissivity)[source]#

Compute the radiative cooling due to black body radiation.

Equation (27) on page 30 of [1].

Parameters:
  • surface_temperature (Annotated[float | float64 | ndarray[Any, dtype[float64]], '°C']) – Ts [C]. The conductor surface temperature.

  • air_temperature (Annotated[float | float64 | ndarray[Any, dtype[float64]], '°C']) – Ta [C]. The ambient air temperature.

  • conductor_diameter (Annotated[float | float64 | ndarray[Any, dtype[float64]], 'm']) – D [m]. Outer diameter of the conductor.

  • conductor_emissivity (Annotated[float | float64 | ndarray[Any, dtype[float64]], '']) – ϵs. The emmisivity of the conductor.

Returns:

Pr [W m1]. The radiative cooling of the conductor.

Return type:

Union[float, float64, ndarray[Any, dtype[float64]]]