summaryrefslogtreecommitdiff
path: root/2021/CH14/EX14.8
diff options
context:
space:
mode:
Diffstat (limited to '2021/CH14/EX14.8')
-rwxr-xr-x2021/CH14/EX14.8/EX14_8.pdfbin0 -> 21716 bytes
-rwxr-xr-x2021/CH14/EX14.8/EX14_8.sce14
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
new file mode 100755
index 000000000..a043551bb
--- /dev/null
+++ b/2021/CH14/EX14.8/EX14_8.pdf
Binary files differ
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");