This is documentation for an old release of SciPy (version 0.8.). Read this page in the documentation of the latest stable release (version 1.15.1).

scipy.constants.K2F

scipy.constants.K2F(K)

Convert Kelvin to Fahrenheit

Parameters :

K : float-like scalar or array-like

Kelvin temperature(s) to be converted

Returns :

F : float or a numpy array of floats, corresponding to type of Parameters

Equivalent Fahrenheit temperature(s)

Notes

Computes F = 1.8 * (K - zero_Celsius ) + 32 where zero_Celsius = 273.15, i.e., (the absolute value of) temperature “absolute zero” as measured in Celsius.

Examples

>>> from scipy.constants.constants import K2F
>>> K2F(np.array([233.15,  313.15]))
array([ -40.,  104.])

Previous topic

scipy.constants.F2K

Next topic

scipy.constants.lambda2nu

This Page