blob: c2cc3462ffe3d430bbc595896c2c9fdf9ae8b16d (
plain)
1
2
3
4
5
6
7
8
9
10
|
////Variable Declaration
cpsubysy = 1000 //Specific heat ration of surrounding and system
Tpreci = 0.006 //Precision in Temperature measurement, °C
//Calcualtions
dtgas = -cpsubysy*(-Tpreci)
//Results
printf("\n Minimum detectable temperature change of gas +-%4.1f °C",dtgas)
|