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 QuickBASIC/QBasic suivant, vous trouverez la réponse que vous souhaitez :
- DECLARE FUNCTION FahrToCent! (Fahr!)
- DECLARE FUNCTION CentToFahr! (Cent!)
- DECLARE FUNCTION CentToKelvin! (Cent!)
- DECLARE FUNCTION KelvinToCent! (Kelvin!)
- DECLARE FUNCTION KelvinToFahr! (Kelvin!)
- DECLARE FUNCTION RankineToCent! (Rankine!)
- DECLARE FUNCTION CentToRankine! (Celsius!)
- DECLARE FUNCTION RankineToFahr! (Rankine!)
- DECLARE FUNCTION ReaumurToCent! (Reaumur!)
- DECLARE FUNCTION NewtonToCent! (Newton!)
-
- PRINT "0 Fahrenheit en Celsius: " + STR$(FahrToCent(0))
- PRINT "32 Fahrenheit en Celsius: " + STR$(FahrToCent(32))
- PRINT "80 Fahrenheit en Celsius: " + STR$(FahrToCent(80))
- PRINT
- PRINT "0 Celcius en Fahrenheit: " + STR$(CentToFahr(0))
- PRINT "30 Celcius en Fahrenheit: " + STR$(CentToFahr(30))
- PRINT "100 Celcius en Fahrenheit: " + STR$(CentToFahr(100))
- PRINT
- PRINT "-273,16 Celsius en Kelvin: " + STR$(CentToKelvin(-273.16))
- PRINT "0 Celsius en Kelvin: " + STR$(CentToKelvin(0))
- PRINT "100 Celsius en Kelvin: " + STR$(CentToKelvin(100))
- PRINT
- PRINT "0 Kelvin en Celsius: " + STR$(KelvinToCent(0))
- PRINT "273,16 Kelvin en Celsius: " + STR$(KelvinToCent(273.16))
- PRINT "373,16 Kelvin en Celsius: " + STR$(KelvinToCent(373.16))
- PRINT
- PRINT "0 Kelvin en Fahrenheit: " + STR$(KelvinToFahr(0))
- PRINT "273,16 Kelvin en Fahrenheit: " + STR$(KelvinToFahr(273.16))
- PRINT "373,16 Kelvin en Fahrenheit: " + STR$(KelvinToFahr(373.16))
- PRINT
- PRINT "0 Rankine en Celsius: " + STR$(RankineToCent(0))
- PRINT "491,69 Rankine en Celsius: " + STR$(RankineToCent(491.69))
- PRINT "671,69 Rankine en Celsius: " + STR$(RankineToCent(671.69))
- PRINT
- PRINT "-273,16 Celsius en Rankine: " + STR$(CentToRankine(-273.16))
- PRINT "0 Celcius en Rankine: " + STR$(CentToRankine(0))
- PRINT "100 Celcius en Rankine: " + STR$(CentToRankine(100!))
- PRINT
- PRINT "0 Rankine en Fahrenheit: " + STR$(RankineToFahr(0))
- PRINT "491,69 Rankine en Fahrenheit: " + STR$(RankineToFahr(491.69))
- PRINT "671,69 Rankine en Fahrenheit: " + STR$(RankineToFahr(671.69))
- PRINT
- PRINT "0 Réaumur en Celsius: " + STR$(ReaumurToCent(0))
- PRINT "80 Réaumur en Celsius: " + STR$(ReaumurToCent(80))
- PRINT "100 Réaumur en Celsius: " + STR$(ReaumurToCent(100))
- PRINT
- PRINT "0 Newton en Celsius: " + STR$(NewtonToCent(0))
- PRINT "100 Newton en Celsius: " + STR$(NewtonToCent(100))
- PRINT "200 Newton en Celsius: " + STR$(NewtonToCent(200))
-
- FUNCTION CentToFahr (Cent)
- CentToFahr = 1.8 * Cent + 32!
- END FUNCTION
-
- FUNCTION CentToKelvin (Cent)
- CentToKelvin = Cent + 273.16
- END FUNCTION
-
- FUNCTION CentToRankine (Celsius)
- CentToRankine = (Celsius * 1.8) + 491.69
- END FUNCTION
-
- FUNCTION FahrToCent (Fahr)
- FahrToCent = (5! / 9!) * (Fahr - 32!)
- END FUNCTION
-
- FUNCTION KelvinToCent (Kelvin)
- KelvinToCent = Kelvin - 273.16
- END FUNCTION
-
- FUNCTION KelvinToFahr (Kelvin)
- KelvinToFahr = 1.8 * (Kelvin - 273.16) + 32!
- END FUNCTION
-
- FUNCTION NewtonToCent (Newton)
- NewtonToCent = Newton * 100 / 33
- END FUNCTION
-
- FUNCTION RankineToCent (Rankine)
- RankineToCent = (5! / 9!) * (Rankine - 491.69)
- END FUNCTION
-
- FUNCTION RankineToFahr (Rankine)
- RankineToFahr = Rankine - 459.69
- END FUNCTION
-
- FUNCTION ReaumurToCent (Reaumur)
- ReaumurToCent = Reaumur * 5 / 4
- END FUNCTION
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 : Mercredi, le 14 septembre 2016