diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1388/CH4/EX4.26 | |
download | Scilab-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/CH4/EX4.26')
-rwxr-xr-x | 1388/CH4/EX4.26/4_26.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/1388/CH4/EX4.26/4_26.sce b/1388/CH4/EX4.26/4_26.sce new file mode 100755 index 000000000..aecc42694 --- /dev/null +++ b/1388/CH4/EX4.26/4_26.sce @@ -0,0 +1,15 @@ +clc
+//initialisation of variables
+H= 1436.3 //cal mole^-1
+d= 0.9999 //g ml^-1
+d1= 0.9168 //g ml^-1
+P= 1 //atm
+m= 18.02 //gm
+R= 1.987 //cal/mole K
+T= 2 //C
+//CALCULATIONS
+V= (p/d)-(p/d1)
+H1= H*82.05/(m*R)
+P1= H1*(-T)/(273*V)
+//RESULTS
+printf (' pressure required to decrease= %.f atm',P1)
|