summaryrefslogtreecommitdiff
path: root/1388/CH3/EX3.3/3_3.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1388/CH3/EX3.3/3_3.sce
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 '1388/CH3/EX3.3/3_3.sce')
-rwxr-xr-x1388/CH3/EX3.3/3_3.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/1388/CH3/EX3.3/3_3.sce b/1388/CH3/EX3.3/3_3.sce
new file mode 100755
index 000000000..6142c0003
--- /dev/null
+++ b/1388/CH3/EX3.3/3_3.sce
@@ -0,0 +1,16 @@
+clc
+//initialisation of variables
+T1= 70 //C
+T2= 10 //C
+Cp= 18 //cal mole^-1 deg^-1
+P= 1 //atm
+m= 18 //g
+d= 0.9778 //g/ml
+d1= 0.9997 //g/ml
+e= 1.987 //cal
+x= 82.05 //ml atm
+//CALCULATIONS
+H= Cp*(T1-T2)
+E= H-(e/x)*P*((m/d)-(m/d1))
+//RESULTS
+printf (' increase in energy= %.f cal ',E)