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 /389/CH7/EX7.2 | |
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 '389/CH7/EX7.2')
-rwxr-xr-x | 389/CH7/EX7.2/Example7_2.sce | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/389/CH7/EX7.2/Example7_2.sce b/389/CH7/EX7.2/Example7_2.sce new file mode 100755 index 000000000..0cc483112 --- /dev/null +++ b/389/CH7/EX7.2/Example7_2.sce @@ -0,0 +1,31 @@ +clear;
+clc;
+
+// Illustration 7.2:
+// Page: 223
+
+printf('Illustration 7.2 - Page: 223\n\n');
+printf('Illustration 7.2 (b)\n\n');
+
+// Solution (b)
+
+// At 100 OC,
+PH2O = 760;// [Vapour pressure of water, mm of Hg]
+// From Fig. 7.2 (Pg 224)
+// At this value,
+PC6H6 = 1400;// [Vapour pressure of benzene, mm of Hg]
+printf("Vapour Pressure of benzene at 100 OC is %d mm of Hg\n\n", PC6H6);
+
+printf('Illustration 7.2 (c)\n\n');
+
+// Solution (c)
+
+// Reference: H20
+// At 25 OC
+m = 0.775;
+Mr = 18.02;// [kg/kmol]
+lambdar = 2443000;// [N/m.kg]
+M = 78.05;// [kg/kmol]
+// From Eqn. 7.6:
+lambda = m*lambdar*Mr/M;// [N/m.kg]
+printf("Latent Heat of Vaporization at 25 OC is %f kN/m.kg\n",lambda/1000);
\ No newline at end of file |