diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3751/CH17/EX17.20/Ex17_20.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3751/CH17/EX17.20/Ex17_20.sce')
-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. + + |