diff options
Diffstat (limited to '3814/CH1/EX1.4/Ex1_4.sce')
-rw-r--r-- | 3814/CH1/EX1.4/Ex1_4.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3814/CH1/EX1.4/Ex1_4.sce b/3814/CH1/EX1.4/Ex1_4.sce new file mode 100644 index 000000000..d851cfc76 --- /dev/null +++ b/3814/CH1/EX1.4/Ex1_4.sce @@ -0,0 +1,13 @@ + +// to calculATE REYNOLD'S NUMBER IN SI UNITS +clc +S=0.91 // specfic gravity +d=1000 // density of water +d1=25e-3 //diameter of pipe +v=2.6 //volume +u=0.38 // viscosity Ns/m2 +p=(S*d) +mprintf('\n fluid density specific gravity %f Kg/m3',p) +Re=(p*d1*v)/u +mprintf('\n Reynold s value Re= %f',Re) +mprintf('Reynolds value is dimensionless,no unit') |