blob: 9d2de4083240a1e3e1a9b6a080e077388b0f375d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// Example 6_14
clc;funcprot(0);
// Given data
// L=10h;
Lbyh=10;
// Calculation
// Re=(V*h)/nu;
Re=Lbyh*(12/1.328)^2;// Reynolds number
printf("For flow velocities having Vh/v «%3.1f. the pressure drop would be given by (a),while for Vh/v »%3.1f it would be given by (b).",Re,Re);
// The answer provided in the text book is wrong
|