/** * @author [Tristan Valcke]{@link https://github.com/Itee} * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause} * * @module sources/physics/constants * @desc Export constants about temperatures * */ /** * @const * @type {number} * @default 0.00000000045 * @desc This value corresponding to the absolute zero kelvin value */ export const ABSOLUTE_ZERO_KELVIN = 0.00000000045 /** * @const * @type {number} * @default -273.14999999955 * @desc This value corresponding to the absolute zero celsius value */ export const ABSOLUTE_ZERO_CELSIUS = -273.14999999955 /** * @const * @type {number} * @default -459.67 * @desc This value corresponding to the absolute zero fahrenheit value */ export const ABSOLUTE_ZERO_FAHRENHEIT = -459.67