From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 905/CH1/EX1.14/1_14.sce | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 905/CH1/EX1.14/1_14.sce (limited to '905/CH1/EX1.14/1_14.sce') diff --git a/905/CH1/EX1.14/1_14.sce b/905/CH1/EX1.14/1_14.sce new file mode 100755 index 000000000..91a82850f --- /dev/null +++ b/905/CH1/EX1.14/1_14.sce @@ -0,0 +1,23 @@ +clear; +clc; + +// Illustration 1.14 +// Page: 39 + +printf('Illustration 1.14 - Page:39 \n\n'); +// Solution + +//*****Data***** +// Binary gaseous mixture of components A and B +P = 1; // [bar] +T = 300; // [K] +R = 8.314; // [cubic m.Pa/mole.K] +delta = 1; // [mm] +y_A1 = 0.7; +y_A2 = 0.2; +D_AB = 0.1; // [square cm/s] +//*****// + +// Using equation 1.72 +N_A = (D_AB*10^-4)*(P*10^5)*(y_A1-y_A2)/(R*T*delta*10^-3); +printf("The molar flux of component A is %f mole/square m.s",N_A); \ No newline at end of file -- cgit