summaryrefslogtreecommitdiff
path: root/536/CH10/EX10.10/Example_10_10.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /536/CH10/EX10.10/Example_10_10.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 '536/CH10/EX10.10/Example_10_10.sce')
-rwxr-xr-x536/CH10/EX10.10/Example_10_10.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/536/CH10/EX10.10/Example_10_10.sce b/536/CH10/EX10.10/Example_10_10.sce
new file mode 100755
index 000000000..67fa3ef18
--- /dev/null
+++ b/536/CH10/EX10.10/Example_10_10.sce
@@ -0,0 +1,13 @@
+clc;
+clear;
+
+printf("Example 10.10\n");
+
+//The mass transfer rate (moles/unit area and unit time) is given by equation
+//10.180, where denoting the original conditions by subscript 1 and the
+//conditions at the higher temperature by subscript 2 gives
+//N_A2=0.83*N_A1
+//Substituting the numerical values gives:
+n=2*(log(0.83/(1.35)^0.5)/log(0.8))-1;
+printf("\n n = %.2f ",n);
+printf("\n Thus the reaction is of second order");