Source

TemperatureUnit.js

  1. /*
  2. * TemperatureUnit.js - Unit conversions for temperature measurements
  3. *
  4. * Copyright © 2014-2015, 2018 JEDLSoft
  5. *
  6. * Licensed under the Apache License, Version 2.0 (the "License");
  7. * you may not use this file except in compliance with the License.
  8. * You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing, software
  13. * distributed under the License is distributed on an "AS IS" BASIS,
  14. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. *
  16. * See the License for the specific language governing permissions and
  17. * limitations under the License.
  18. */
  19. /*
  20. !depends
  21. Measurement.js
  22. */
  23. var Measurement = require("./Measurement.js");
  24. /**
  25. * @class
  26. * Create a new Temperature measurement instance.
  27. *
  28. * @constructor
  29. * @extends Measurement
  30. * @param {Object} options Options controlling the construction of this instance
  31. * @param {string} options.unit
  32. * @param {number|string|undefined} options.amount *
  33. */
  34. var TemperatureUnit = function (options) {
  35. this.unit = "celsius";
  36. this.amount = 0;
  37. this.ratios = TemperatureUnit.ratios;
  38. this.aliases = TemperatureUnit.aliases;
  39. this.aliasesLower = TemperatureUnit.aliasesLower;
  40. this.systems = TemperatureUnit.systems;
  41. this.parent.call(this, options);
  42. };
  43. TemperatureUnit.prototype = new Measurement();
  44. TemperatureUnit.prototype.parent = Measurement;
  45. TemperatureUnit.prototype.constructor = TemperatureUnit;
  46. TemperatureUnit.ratios = {
  47. /* index, C K F */
  48. "celsius": [ 1, 1, 1, 9/5 ],
  49. "kelvin": [ 2, 1, 1, 9/5 ],
  50. "fahrenheit": [ 3, 5/9, 5/9, 1 ]
  51. };
  52. /**
  53. * Return the type of this measurement. Examples are "mass",
  54. * "length", "speed", etc. Measurements can only be converted
  55. * to measurements of the same type.<p>
  56. *
  57. * The type of the units is determined automatically from the
  58. * units. For example, the unit "grams" is type "mass". Use the
  59. * static call {@link Measurement.getAvailableUnits}
  60. * to find out what units this version of ilib supports.
  61. *
  62. * @return {string} the name of the type of this measurement
  63. */
  64. TemperatureUnit.prototype.getMeasure = function() {
  65. return "temperature";
  66. };
  67. /**
  68. * Return a new instance of this type of measurement.
  69. *
  70. * @param {Object} params parameters to the constructor
  71. * @return {Measurement} a measurement subclass instance
  72. */
  73. TemperatureUnit.prototype.newUnit = function(params) {
  74. return new TemperatureUnit(params);
  75. };
  76. TemperatureUnit.systems = {
  77. "metric": [
  78. "celsius",
  79. "kelvin"
  80. ],
  81. "uscustomary": [
  82. "fahrenheit"
  83. ],
  84. "imperial": [
  85. "fahrenheit"
  86. ],
  87. "conversions": {
  88. "metric": {
  89. "uscustomary": {
  90. "celsius": "fahrenheit",
  91. "kelvin": "fahrenheit"
  92. },
  93. "imperial": {
  94. "celsius": "fahrenheit",
  95. "kelvin": "fahrenheit"
  96. }
  97. },
  98. "uscustomary": {
  99. "metric": {
  100. "fahrenheit": "celsius"
  101. }
  102. },
  103. "imperial": {
  104. "metric": {
  105. "fahrenheit": "celsius"
  106. }
  107. }
  108. }
  109. };
  110. TemperatureUnit.aliases = {
  111. "Celsius": "celsius",
  112. "C": "celsius",
  113. "Centegrade": "celsius",
  114. "Centigrade": "celsius",
  115. "Fahrenheit": "fahrenheit",
  116. "F": "fahrenheit",
  117. "K": "kelvin",
  118. "Kelvin": "kelvin",
  119. "°F": "fahrenheit",
  120. "℉": "fahrenheit",
  121. "℃": "celsius",
  122. "°C": "celsius"
  123. };
  124. (function() {
  125. TemperatureUnit.aliasesLower = {};
  126. for (var a in TemperatureUnit.aliases) {
  127. TemperatureUnit.aliasesLower[a.toLowerCase()] = TemperatureUnit.aliases[a];
  128. }
  129. })();
  130. /**
  131. * Return a new measurement instance that is converted to a new
  132. * measurement unit. Measurements can only be converted
  133. * to measurements of the same type.<p>
  134. *
  135. * @param {string} to The name of the units to convert to
  136. * @return {number|undefined} the converted measurement
  137. * or undefined if the requested units are for a different
  138. * measurement type
  139. */
  140. TemperatureUnit.prototype.convert = function(to) {
  141. if (!to || typeof(TemperatureUnit.ratios[this.normalizeUnits(to)]) === 'undefined') {
  142. return undefined;
  143. }
  144. return TemperatureUnit.convert(to, this.unit, this.amount);
  145. };
  146. /**
  147. * Convert a temperature to another measure.
  148. * @static
  149. * @param to {string} unit to convert to
  150. * @param from {string} unit to convert from
  151. * @param temperature {number} amount to be convert
  152. * @returns {number|undefined} the converted amount
  153. */
  154. TemperatureUnit.convert = function(to, from, temperature) {
  155. var result = 0;
  156. from = Measurement.getUnitIdCaseInsensitive(TemperatureUnit, from) || from;
  157. to = Measurement.getUnitIdCaseInsensitive(TemperatureUnit, to) || to;
  158. if (from === to) {
  159. return temperature;
  160. } else if (from === "celsius") {
  161. if (to === "fahrenheit") {
  162. result = ((temperature * 9 / 5) + 32);
  163. } else if (to === "kelvin") {
  164. result = (temperature + 273.15);
  165. }
  166. } else if (from === "fahrenheit") {
  167. if (to === "celsius") {
  168. result = ((5 / 9 * (temperature - 32)));
  169. } else if (to === "kelvin") {
  170. result = ((temperature + 459.67) * 5 / 9);
  171. }
  172. } else if (from === "kelvin") {
  173. if (to === "celsius") {
  174. result = (temperature - 273.15);
  175. } else if (to === "fahrenheit") {
  176. result = ((temperature * 9 / 5) - 459.67);
  177. }
  178. }
  179. return result;
  180. };
  181. /**
  182. * Scale the measurement unit to an acceptable level. The scaling
  183. * happens so that the integer part of the amount is as small as
  184. * possible without being below zero. This will result in the
  185. * largest units that can represent this measurement without
  186. * fractions. Measurements can only be scaled to other measurements
  187. * of the same type.
  188. *
  189. * @param {string=} measurementsystem system to use (uscustomary|imperial|metric),
  190. * or undefined if the system can be inferred from the current measure
  191. * @return {Measurement} a new instance that is scaled to the
  192. * right level
  193. */
  194. TemperatureUnit.prototype.scale = function(measurementsystem) {
  195. // no scaling for temp units
  196. return this;
  197. };
  198. /**
  199. * @private
  200. * @static
  201. */
  202. TemperatureUnit.getMeasures = function () {
  203. return ["celsius", "kelvin", "fahrenheit"];
  204. };
  205. //register with the factory method
  206. Measurement._constructors["temperature"] = TemperatureUnit;
  207. module.exports = TemperatureUnit;