diff options
Diffstat (limited to '1052/CH12/EX12.2/122.sce')
-rwxr-xr-x | 1052/CH12/EX12.2/122.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/1052/CH12/EX12.2/122.sce b/1052/CH12/EX12.2/122.sce new file mode 100755 index 000000000..dbfab1d9f --- /dev/null +++ b/1052/CH12/EX12.2/122.sce @@ -0,0 +1,12 @@ +clc;
+//Example 12.2
+//page no 125
+printf("Example 12.2 page no 125\n\n");
+//to calculate reynolds number
+L=2.54//diameter of tube in cm
+rho=1.50//density of liquid in gm/cm^3
+v=20//velocity of flow in cm/s
+meu=0.78e-2//viscosity of liquid in g/cm*s
+printf("\n diameter of tube L=%f cm\n density rho=%f gm/cm^3\n velocity v=%f cm/s\n viscosity meu=%f g/cm*s",L,rho,v,meu);
+R_e=L*rho*v/meu//reynolds number
+printf("\n Reynolds no. R_e=%f ",R_e);
|