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ésenter 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 GWBASIC suivant, vous trouverez la réponse que vous souhaitez :

  1. 10 DEF FNCENTTOFAHR(CENT)=1.8 * CENT + 32!
  2. 20 DEF FNCENTTOKELVIN(CENT)=CENT + 273.16
  3. 30 DEF FNCENTTORANKINE(CELSIUS)= (CELSIUS * 1.8) + 491.69
  4. 40 DEF FNFAHRTOCENT(FAHR)=(5! / 9!) * (FAHR - 32!)
  5. 50 DEF FNKELVINTOCENT(KELVIN)=KELVIN - 273.16
  6. 60 DEF FNKELVINTOFAHR(KELVIN)=1.8 * (KELVIN - 273.16) + 32!
  7. 70 DEF FNNEWTONTOCENT(NEWTON)=NEWTON * 100 / 33
  8. 80 DEF FNRANKINETOCENT(RANKINE)=(5! / 9!) * (RANKINE - 491.69)
  9. 90 DEF FNRANKINETOFAHR(RANKINE)=RANKINE - 459.69
  10. 100 DEF FNREAUMURTOCENT(REAUMUR)= REAUMUR * 5 / 4
  11. 110 PRINT "0 Fahrenheit en Celsius: " + STR$(FNFAHRTOCENT(0))
  12. 120 PRINT "32 Fahrenheit en Celsius: " + STR$(FNFAHRTOCENT(32))
  13. 130 PRINT "80 Fahrenheit en Celsius: " + STR$(FNFAHRTOCENT(80))
  14. 140 PRINT
  15. 150 PRINT "0 Celcius en Fahrenheit: " + STR$(FNCENTTOFAHR(0))
  16. 160 PRINT "30 Celcius en Fahrenheit: " + STR$(FNCENTTOFAHR(30))
  17. 170 PRINT "100 Celcius en Fahrenheit: " + STR$(FNCENTTOFAHR(100))
  18. 180 PRINT
  19. 190 PRINT "-273,16 Celsius en Kelvin: " + STR$(FNCENTTOKELVIN(-273.16))
  20. 200 PRINT "0 Celsius en Kelvin: " + STR$(FNCENTTOKELVIN(0))
  21. 210 PRINT "100 Celsius en Kelvin: " + STR$(FNCENTTOKELVIN(100))
  22. 220 PRINT
  23. 230 PRINT "0 Kelvin en Celsius: " + STR$(FNKELVINTOCENT(0))
  24. 240 PRINT "273,16 Kelvin en Celsius: " + STR$(FNKELVINTOCENT(273.16))
  25. 250 PRINT "373,16 Kelvin en Celsius: " + STR$(FNKELVINTOCENT(373.16))
  26. 260 PRINT
  27. 270 PRINT "0 Kelvin en Fahrenheit: " + STR$(FNKELVINTOFAHR(0))
  28. 280 PRINT "273,16 Kelvin en Fahrenheit: " + STR$(FNKELVINTOFAHR(273.16))
  29. 290 PRINT "373,16 Kelvin en Fahrenheit: " + STR$(FNKELVINTOFAHR(373.16))
  30. 300 PRINT
  31. 310 PRINT "0 Rankine en Celsius: " + STR$(FNRANKINETOCENT(0))
  32. 320 PRINT "491,69 Rankine en Celsius: " + STR$(FNRANKINETOCENT(491.69))
  33. 330 PRINT "671,69 Rankine en Celsius: " + STR$(FNRANKINETOCENT(671.69))
  34. 340 PRINT
  35. 350 PRINT "-273,16 Celsius en Rankine: " + STR$(FNCENTTORANKINE(-273.16))
  36. 360 PRINT "0 Celcius en Rankine: " + STR$(FNCENTTORANKINE(0))
  37. 370 PRINT "100 Celcius en Rankine: " + STR$(FNCENTTORANKINE(100!))
  38. 380 PRINT
  39. 390 PRINT "0 Rankine en Fahrenheit: " + STR$(FNRANKINETOFAHR(0))
  40. 400 PRINT "491,69 Rankine en Fahrenheit: " + STR$(FNRANKINETOFAHR(491.69))
  41. 410 PRINT "671,69 Rankine en Fahrenheit: " + STR$(FNRANKINETOFAHR(671.69))
  42. 420 PRINT
  43. 430 PRINT "0 Réaumur en Celsius: " + STR$(FNREAUMURTOCENT(0))
  44. 440 PRINT "80 Réaumur en Celsius: " + STR$(FNREAUMURTOCENT(80))
  45. 450 PRINT "100 Réaumur en Celsius: " + STR$(FNREAUMURTOCENT(100))
  46. 460 PRINT
  47. 470 PRINT "0 Newton en Celsius: " + STR$(FNNEWTONTOCENT(0))
  48. 480 PRINT "100 Newton en Celsius: " + STR$(FNNEWTONTOCENT(100))
  49. 490 PRINT "200 Newton en Celsius: " + STR$(FNNEWTONTOCENT(200))

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 : Samedi, le 24 janvier 2015