diff options
Diffstat (limited to '1388/CH3/EX3.3/3_3.sce')
-rwxr-xr-x | 1388/CH3/EX3.3/3_3.sce | 16 |
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)
|