blob: 03b3ccd8786f7191b45506e64d17c8a573701196 (
plain)
1
2
3
4
5
6
7
8
|
clc
Re=2000;
d=0.008; //m
L1=0.058*Re*d;
disp("The furthest distance the fluid can flow into the 8 mm inside diameter pipe before fully developed laminar flow can exist is ");
disp(L1);
disp("m");
|