diff options
Diffstat (limited to '3751/CH17/EX17.20')
-rw-r--r-- | 3751/CH17/EX17.20/Ex17_20.sce | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/3751/CH17/EX17.20/Ex17_20.sce b/3751/CH17/EX17.20/Ex17_20.sce new file mode 100644 index 000000000..162c05c42 --- /dev/null +++ b/3751/CH17/EX17.20/Ex17_20.sce @@ -0,0 +1,26 @@ +//Fluid Systems - By Shiv Kumar +//Chapter 17- Dimensional and Model Analysis +//Example 17.20 +//To Find the Discharge and the Velocity over the Prototype. + + clc + clear + +//Given Data:- + //For Model, + Qm=3; //Discharge over the Model, m^3/s + Vm=1.5; //Velocity of Flow over the Model, m/s + Lr=40; //Scale Ratio (Lp/Lm) + + +//Computations:- + //By Froude's Law of Similarity, + Vp=Vm*Lr^(1/2); //Velocity of Flow ovre the Prototype, m/s + Qp=Lr^2*(Vp/Vm)*Qm; //Discharge over the Prototype, m^/s + + +//Results:- + printf("The Velocity over the Prototype, Vp=%.2f m/s \n",Vp) //The Answer Vary due to Round off Error. + printf("The Discharge over the Prototype, Qp=%.f m^3/s \n",Qp) //The Answer provided in the Textbook is Wrong. + + |