diff options
Diffstat (limited to '2021/CH14/EX14.8')
-rwxr-xr-x | 2021/CH14/EX14.8/EX14_8.pdf | bin | 0 -> 21716 bytes | |||
-rwxr-xr-x | 2021/CH14/EX14.8/EX14_8.sce | 14 |
2 files changed, 14 insertions, 0 deletions
diff --git a/2021/CH14/EX14.8/EX14_8.pdf b/2021/CH14/EX14.8/EX14_8.pdf Binary files differnew file mode 100755 index 000000000..a043551bb --- /dev/null +++ b/2021/CH14/EX14.8/EX14_8.pdf diff --git a/2021/CH14/EX14.8/EX14_8.sce b/2021/CH14/EX14.8/EX14_8.sce new file mode 100755 index 000000000..582e96543 --- /dev/null +++ b/2021/CH14/EX14.8/EX14_8.sce @@ -0,0 +1,14 @@ +//Finding of Velocity of Model
+//Given
+vp=20;
+lm=1;
+lp=15;
+rho1=1024;
+rho2=1000;
+Fp=600;
+Fm=0.12;
+//To Find
+vm=sqrt(lm/lp)*vp;
+Fp=Fm*(lm/lp)^2*(vp/vm)^2*(rho1/rho2);
+disp("Velocity of Prototype ="+string(vm)+" m/sec");
+disp("Resistance of Prototype ="+string(Fp)+" Newton");
|