Section courante

A propos

Section administrative du site

Les unités de mesure utilisé en météorologie pour mesurer le température qu'il fait (chaud ou froid) est très varié. Le schéma suivant permet de représenté en fonction d'un domaine ou d'une région les températures utilisés :

Unités de mesure Utilisation Date de création Origine du nom
Celsius Unité de mesure international utilisé par le grand publique 1948 Anders Celsius
Fahrenheit Unité de mesure surtout utilisé par les américains 1724 Daniel Gabriel Fahrenheit
Kelvin Unité de mesure surtout utilisé par les physiciens 1954 Lord Kelvin
Newton Unité de mesure utilisé en histoire Environ 1700 Isaac Newton
Rankine Unité de mesure surtout utilisé par les physiciens 1859 William John Macquorn Rankine
Réaumur Unité de mesure utilisé en histoire 1731 René-Antoine Ferchault de Réaumur

A l'aide du code source LotusScript suivant, vous trouverez la réponse que vous souhaitez :

  1. Sub Main
  2.      Print "0 Fahrenheit en Celsius: " + Str$(FahrToCent(0))
  3.      Print "32 Fahrenheit en Celsius: " + Str$(FahrToCent(32))
  4.      Print "80 Fahrenheit en Celsius: " + Str$(FahrToCent(80))
  5.      Print
  6.      Print "0 Celcius en Fahrenheit: " + Str$(CentToFahr(0))
  7.      Print "30 Celcius en Fahrenheit: " + Str$(CentToFahr(30))
  8.      Print "100 Celcius en Fahrenheit: " + Str$(CentToFahr(100))
  9.      Print
  10.      Print "-273,16 Celsius en Kelvin: " + Str$(CentToKelvin(-273.16))
  11.      Print "0 Celsius en Kelvin: " + Str$(CentToKelvin(0))
  12.      Print "100 Celsius en Kelvin: " + Str$(CentToKelvin(100))
  13.      Print
  14.      Print "0 Kelvin en Celsius: " + Str$(KelvinToCent(0))
  15.      Print "273,16 Kelvin en Celsius: " + Str$(KelvinToCent(273.16))
  16.      Print "373,16 Kelvin en Celsius: " + Str$(KelvinToCent(373.16))
  17.      Print
  18.      Print "0 Kelvin en Fahrenheit: " + Str$(KelvinToFahr(0))
  19.      Print "273,16 Kelvin en Fahrenheit: " + Str$(KelvinToFahr(273.16))
  20.      Print "373,16 Kelvin en Fahrenheit: " + Str$(KelvinToFahr(373.16))
  21.      Print
  22.      Print "0 Rankine en Celsius: " + Str$(RankineToCent(0))
  23.      Print "491,69 Rankine en Celsius: " + Str$(RankineToCent(491.69))
  24.      Print "671,69 Rankine en Celsius: " + Str$(RankineToCent(671.69))
  25.      Print
  26.      Print "-273,16 Celsius en Rankine: " + Str$(CentToRankine(-273.16))
  27.      Print "0 Celcius en Rankine: " + Str$(CentToRankine(0))
  28.      Print "100 Celcius en Rankine: " + Str$(CentToRankine(100!))
  29.      Print
  30.      Print "0 Rankine en Fahrenheit: " + Str$(RankineToFahr(0))
  31.      Print "491,69 Rankine en Fahrenheit: " + Str$(RankineToFahr(491.69))
  32.      Print "671,69 Rankine en Fahrenheit: " + Str$(RankineToFahr(671.69))
  33.      Print
  34.      Print "0 Réaumur en Celsius: " + Str$(ReaumurToCent(0))
  35.      Print "80 Réaumur en Celsius: " + Str$(ReaumurToCent(80))
  36.      Print "100 Réaumur en Celsius: " + Str$(ReaumurToCent(100))
  37.      Print
  38.      Print "0 Newton en Celsius: " + Str$(NewtonToCent(0))
  39.      Print "100 Newton en Celsius: " + Str$(NewtonToCent(100))
  40.      Print "200 Newton en Celsius: " + Str$(NewtonToCent(200)) 
  41. End Sub
  42.  
  43. Function CentToFahr(Byval Cent As Double)
  44.      CentToFahr = 1.8 * Cent + 32.0!
  45. End Function
  46.  
  47. Function CentToKelvin(Byval Cent As Double)
  48.      CentToKelvin = Cent + 273.16
  49. End Function
  50.  
  51. Function CentToRankine(Byval Celsius As Double)
  52.      CentToRankine = (Celsius * 1.8) + 491.69
  53. End Function
  54.  
  55. Function FahrToCent(Byval Fahr As Double)
  56.      FahrToCent = (5.0! / 9.0!) * (Fahr - 32.0!)
  57. End Function
  58.  
  59. Function KelvinToCent(Byval Kelvin As Double)
  60.      KelvinToCent = Kelvin - 273.16
  61. End Function
  62.  
  63. Function KelvinToFahr(Byval Kelvin As Double)
  64.      KelvinToFahr = 1.8 * (Kelvin - 273.16) + 32.0!
  65. End Function
  66.  
  67. Function NewtonToCent(Byval Newton As Double)
  68.      NewtonToCent = Newton * 100 / 33
  69. End Function
  70.  
  71. Function RankineToCent(Byval Rankine As Double)
  72.      RankineToCent = (5.0! / 9.0!) * (Rankine - 491.69)
  73. End Function
  74.  
  75. Function RankineToFahr(Byval Rankine As Double)
  76.      RankineToFahr = Rankine - 459.69
  77. End Function
  78.  
  79. Function ReaumurToCent(Byval Reaumur As Double)
  80.      ReaumurToCent = Reaumur * 5 / 4
  81. End Function

on obtiendra le résultat suivant :

0 Fahrenheit en Celsius: -17,7778
32 Fahrenheit en Celsius: 0
80 Fahrenheit en Celsius: 26,6667

0 Celcius en Fahrenheit: 32
30 Celcius en Fahrenheit: 86
100 Celcius en Fahrenheit: 212

-273.16 Celsius en Kelvin: 0
0 Celsius en Kelvin: 273,16
100 Celsius en Kelvin: 373,16

0 Kelvin en Celsius: -273,16
273,16 Kelvin en Celsius: 0
373,16 Kelvin en Celsius: 100

0 Kelvin en Fahrenheit: -459,688
273,16 Kelvin en Fahrenheit: 32
373,16 Kelvin en Fahrenheit: 212

0 Rankine en Celsius: -273,161
491,69 Rankine en Celsius: 0
671,69 Rankine en Celsius: 100

-273,16 Celsius en Rankine: 0,002
0 Celcius en Rankine: 491,69
100 Celcius en Rankine: 671,69

0 Rankine en Fahrenheit: -459,69
491,69 Rankine en Fahrenheit: 32
671,69 Rankine en Fahrenheit: 212

0 Réaumur en Celsius: 0
80 Réaumur en Celsius: 100
100 Réaumur en Celsius: 125

0 Newton en Celsius: 0
100 Newton en Celsius: 303,03
200 Newton en Celsius: 606,061


Dernière mise à jour : Dimanche, le 18 janvier 2015