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']) –
. The conductor surface temperature.air_temperature (Annotated[float | float64 | ndarray[Any, dtype[float64]], '°C']) –
. The ambient air temperature.conductor_diameter (Annotated[float | float64 | ndarray[Any, dtype[float64]], 'm']) –
. Outer diameter of the conductor.conductor_emissivity (Annotated[float | float64 | ndarray[Any, dtype[float64]], '']) –
. The emmisivity of the conductor.
- Returns:
. The radiative cooling of the conductor.- Return type:
Union[float, float64, ndarray[Any, dtype[float64]]]