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 /3516/CH13/EX13.4 | |
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 '3516/CH13/EX13.4')
-rw-r--r-- | 3516/CH13/EX13.4/Ex13_4.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/3516/CH13/EX13.4/Ex13_4.sce b/3516/CH13/EX13.4/Ex13_4.sce new file mode 100644 index 000000000..03e5d39b0 --- /dev/null +++ b/3516/CH13/EX13.4/Ex13_4.sce @@ -0,0 +1,11 @@ +printf("\t example 13.4 \n");
+printf("\t approximate values are mentioned in the book \n");
+vA=2*3.7+(7.4); // for steam
+vB=14.8+(2*7.4); // for CO2
+MA=18;
+MB=44;
+T=403; // K
+Pt=3.04; // atm
+kd=(0.0166)*(((403^(3/2))/(3.04*(14.8^(1/3)+29.6^(1/3))^(2)))*((1/18)+(1/44))^(1/2)); // eq 13.31
+printf("\t diffusivity is : %.2f ft^2/hr \n",kd);
+// end
|