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 :
- 10 DEF FNCENTTOFAHR(CENT)=1.8 * CENT + 32!
- 20 DEF FNCENTTOKELVIN(CENT)=CENT + 273.16
- 30 DEF FNCENTTORANKINE(CELSIUS)= (CELSIUS * 1.8) + 491.69
- 40 DEF FNFAHRTOCENT(FAHR)=(5! / 9!) * (FAHR - 32!)
- 50 DEF FNKELVINTOCENT(KELVIN)=KELVIN - 273.16
- 60 DEF FNKELVINTOFAHR(KELVIN)=1.8 * (KELVIN - 273.16) + 32!
- 70 DEF FNNEWTONTOCENT(NEWTON)=NEWTON * 100 / 33
- 80 DEF FNRANKINETOCENT(RANKINE)=(5! / 9!) * (RANKINE - 491.69)
- 90 DEF FNRANKINETOFAHR(RANKINE)=RANKINE - 459.69
- 100 DEF FNREAUMURTOCENT(REAUMUR)= REAUMUR * 5 / 4
- 110 PRINT "0 Fahrenheit en Celsius: " + STR$(FNFAHRTOCENT(0))
- 120 PRINT "32 Fahrenheit en Celsius: " + STR$(FNFAHRTOCENT(32))
- 130 PRINT "80 Fahrenheit en Celsius: " + STR$(FNFAHRTOCENT(80))
- 140 PRINT
- 150 PRINT "0 Celcius en Fahrenheit: " + STR$(FNCENTTOFAHR(0))
- 160 PRINT "30 Celcius en Fahrenheit: " + STR$(FNCENTTOFAHR(30))
- 170 PRINT "100 Celcius en Fahrenheit: " + STR$(FNCENTTOFAHR(100))
- 180 PRINT
- 190 PRINT "-273,16 Celsius en Kelvin: " + STR$(FNCENTTOKELVIN(-273.16))
- 200 PRINT "0 Celsius en Kelvin: " + STR$(FNCENTTOKELVIN(0))
- 210 PRINT "100 Celsius en Kelvin: " + STR$(FNCENTTOKELVIN(100))
- 220 PRINT
- 230 PRINT "0 Kelvin en Celsius: " + STR$(FNKELVINTOCENT(0))
- 240 PRINT "273,16 Kelvin en Celsius: " + STR$(FNKELVINTOCENT(273.16))
- 250 PRINT "373,16 Kelvin en Celsius: " + STR$(FNKELVINTOCENT(373.16))
- 260 PRINT
- 270 PRINT "0 Kelvin en Fahrenheit: " + STR$(FNKELVINTOFAHR(0))
- 280 PRINT "273,16 Kelvin en Fahrenheit: " + STR$(FNKELVINTOFAHR(273.16))
- 290 PRINT "373,16 Kelvin en Fahrenheit: " + STR$(FNKELVINTOFAHR(373.16))
- 300 PRINT
- 310 PRINT "0 Rankine en Celsius: " + STR$(FNRANKINETOCENT(0))
- 320 PRINT "491,69 Rankine en Celsius: " + STR$(FNRANKINETOCENT(491.69))
- 330 PRINT "671,69 Rankine en Celsius: " + STR$(FNRANKINETOCENT(671.69))
- 340 PRINT
- 350 PRINT "-273,16 Celsius en Rankine: " + STR$(FNCENTTORANKINE(-273.16))
- 360 PRINT "0 Celcius en Rankine: " + STR$(FNCENTTORANKINE(0))
- 370 PRINT "100 Celcius en Rankine: " + STR$(FNCENTTORANKINE(100!))
- 380 PRINT
- 390 PRINT "0 Rankine en Fahrenheit: " + STR$(FNRANKINETOFAHR(0))
- 400 PRINT "491,69 Rankine en Fahrenheit: " + STR$(FNRANKINETOFAHR(491.69))
- 410 PRINT "671,69 Rankine en Fahrenheit: " + STR$(FNRANKINETOFAHR(671.69))
- 420 PRINT
- 430 PRINT "0 Réaumur en Celsius: " + STR$(FNREAUMURTOCENT(0))
- 440 PRINT "80 Réaumur en Celsius: " + STR$(FNREAUMURTOCENT(80))
- 450 PRINT "100 Réaumur en Celsius: " + STR$(FNREAUMURTOCENT(100))
- 460 PRINT
- 470 PRINT "0 Newton en Celsius: " + STR$(FNNEWTONTOCENT(0))
- 480 PRINT "100 Newton en Celsius: " + STR$(FNNEWTONTOCENT(100))
- 490 PRINT "200 Newton en Celsius: " + STR$(FNNEWTONTOCENT(200))
on obtiendra le résultat suivant :
0 Fahrenheit en Celsius: -17,777832 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