blob: 0f48b741cb4dd42586a413b5d45e5fdf4f6dfc2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
clc; funcprot(0);
//Example 3.7 Similar Flows
// Initialisation of variables
c = 3/12; //chord length in feet
V = 100*1.467; // velocity in ft/sec
R = 0.002378;
mu = 0.000000373;
// Calculations
RN = rho*V*c/mu;
//Results
disp(RN , "Reynolds no:");
|