blob: 21d7601f8053a13f7bc8275681e6bb76d2925cde (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
clear;
clc;
// Illustration 7.9
// Page: 460
printf('Illustration 7.9 - Page: 460\n\n');
// solution
//*****Data*****//
// From example 7.8
Di = 0.288; // [m]
sigma = 0.025; // [N/m]
ohm = 152*1.2/60; // [rps]
ds = 868; // [kg/cubic m]
phiD = 0.385;
// Therefore from equation 7.49
We = Di^3*ohm^2*ds/sigma; // [Weber number]
// From equation 7.50
dvs = Di*0.052*(We)^-0.6*exp(4*phiD); // [m]
disp(dvs);
// Substituting in equation 7.48
a = 6*phiD/dvs; // [square m/cubic m]
printf("The Sauter mean drop diameter and the interfacial area is %e m and %f square m/cubic m respectively.\n\n",dvs,a);
|