diff options
Diffstat (limited to '1427/CH18/EX18.29/18_29.sce')
-rw-r--r-- | 1427/CH18/EX18.29/18_29.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/1427/CH18/EX18.29/18_29.sce b/1427/CH18/EX18.29/18_29.sce new file mode 100644 index 000000000..02926a1c0 --- /dev/null +++ b/1427/CH18/EX18.29/18_29.sce @@ -0,0 +1,8 @@ +//ques-18.29
+//Determining temperature at which water will boil when atmospheric pressure is 528mm Hg
+clc
+P1=528; P2=760;//pressure (in mm Hg)
+H=545.5;//latent heat of vapourisation (in cal/g)
+T2=273+100;//temperature (in K)
+T1=1/((log10(P2/P1)*2.303*1.987)/(H*18)+(1/T2));
+printf("The temperature required is %.0f K.",T1);
|