I'm a metpy user.
I was calculating the unit of temperature using metpy.
I found one difference in the process of subtraction.
For Celsius and Fahrenheit temperatures, subtracting or adding values will output delta_degree_celsius, but for kelvin temperature, it will be output as kelvin.
I wonder what are the differences between these and the results.
d1 = 10 * units.degC
d2 = 5 * units.degC
d1 - d2
= 5 delta_degree_celsius
d3 = 10 * units.kelvin
d4 = 5 * units.kelvin
d3 - d4
= 5 kelvin