diff options
Diffstat (limited to '686/CH6/EX6.2/Ex6_2.sci')
-rwxr-xr-x | 686/CH6/EX6.2/Ex6_2.sci | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/686/CH6/EX6.2/Ex6_2.sci b/686/CH6/EX6.2/Ex6_2.sci new file mode 100755 index 000000000..4df22b604 --- /dev/null +++ b/686/CH6/EX6.2/Ex6_2.sci @@ -0,0 +1,12 @@ +clc();
+clear;
+
+// To calculate the thickness of turbulent boundary layer at a distance of 12 inch
+x = 12/12; // Distance from leading edge in ft
+v = 33; // Stream flowing velocity in ft
+n = 15.4*10^(-5); // kinematic viscosity, feet^2/s
+
+Re = v*x/n ; // reynolds number
+delta = 0.376*x/(Re^0.2); // Boundary layer thickness ,ft
+delb = 0.036*delta*12; // Turbulent layer thickness, in
+printf("The turbulent boundarty layer thickness is %.3f ft",delb);
\ No newline at end of file |