diff options
Diffstat (limited to '1052/CH14/EX14.1/141.sce')
-rwxr-xr-x | 1052/CH14/EX14.1/141.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/1052/CH14/EX14.1/141.sce b/1052/CH14/EX14.1/141.sce new file mode 100755 index 000000000..76d35fd47 --- /dev/null +++ b/1052/CH14/EX14.1/141.sce @@ -0,0 +1,11 @@ +clc;
+//Example 14.1
+//page no 148
+printf("Example 14.1 page no 148\n\n");
+//a liquid flow through a tube
+meu=0.78e-2//viscosity of liquid,g/cm*s
+rho=1.50//density,g/cm^3
+D=2.54//diameter,cm
+v=20//flow velocity
+R_e=D*v*rho/meu//reynolds no
+printf("\n Reynolds no R_e=%f ",R_e);
|