summaryrefslogtreecommitdiff
path: root/2489/CH5/EX5.2
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2489/CH5/EX5.2
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '2489/CH5/EX5.2')
-rwxr-xr-x2489/CH5/EX5.2/5_2.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/2489/CH5/EX5.2/5_2.sce b/2489/CH5/EX5.2/5_2.sce
new file mode 100755
index 000000000..884c400f6
--- /dev/null
+++ b/2489/CH5/EX5.2/5_2.sce
@@ -0,0 +1,16 @@
+clc
+//Intitalisation of variables
+clear
+p= 27.17 //mm
+T= 99.5 //C
+T1= 100.5 //C
+T2= 100 //C
+sv1= 1674 //cc per gram
+sv2= 1.04 //cc per gram
+g= 980.7 //cm/sec^2
+d= 13.595 //kg/m^3
+//CALCULATIONS
+r= (p/10)*d*g
+lv= (273.2+T2)*(sv1-sv2)*(p/10)*d*g/(4.184*10^7)
+//RESULTS
+printf ('Heat of vapourisation of water = %.1f cal g^-1',lv)