Chem E

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 4

x=[0.356 1.838 6.07 31.213 158.102 127.696 32.

45];
y = [67.475 12.493 6.098 3.28 0.56 0.921 0.503];
figure;
plot(x,y,'+')
semilogx(x,y)
xlabel('Reynolds number');
ylabel('Drag Coefficient');
hold all
c = 0.1:0.01:1 ;
d = 24./c;
plot(c,d);

e = [1.838 6.07 31.213 158.102 127.696 32.45];


f = 18*e.^(-.6);
plot(e,f)

x= [119.852 236.07 363.189 438.66 717.647 835.3 944];


y= [3.981 2.892 2.504 2.334 2.077 1.999 1.94];
plot(x,y)
c = [119.852 236.07 363.189 438.66 717.647 835.3 944];
d = 150./c+1.75;

hold all;
plot(c,d)
xlabel('Reynolds number');
ylabel('Packed bed friction factor');

x= [56.619 110.048 165.603 241.362 295.057 350.878 409.358];


y= [6.737 4.194 3.288 2.355 2.219 2.071 1.992];
plot(x,y)
c = [56.619 110.048 165.603 241.362 295.057 350.878 409.35];
d = 150./c+1.75;
hold all;

plot(c,d)
xlabel('Reynolds number');
ylabel('Packed bed friction factor');

You might also like