summaryrefslogtreecommitdiff
path: root/2021/CH14/EX14.7
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2021/CH14/EX14.7
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '2021/CH14/EX14.7')
-rwxr-xr-x2021/CH14/EX14.7/EX14_7.pdfbin0 -> 21283 bytes
-rwxr-xr-x2021/CH14/EX14.7/EX14_7.sce15
2 files changed, 15 insertions, 0 deletions
diff --git a/2021/CH14/EX14.7/EX14_7.pdf b/2021/CH14/EX14.7/EX14_7.pdf
new file mode 100755
index 000000000..ea45a1864
--- /dev/null
+++ b/2021/CH14/EX14.7/EX14_7.pdf
Binary files differ
diff --git a/2021/CH14/EX14.7/EX14_7.sce b/2021/CH14/EX14.7/EX14_7.sce
new file mode 100755
index 000000000..56caf62f1
--- /dev/null
+++ b/2021/CH14/EX14.7/EX14_7.sce
@@ -0,0 +1,15 @@
+//Finding of Velocity of Prototype
+//Given
+vm=30;
+lm=100;
+lp=1;
+Am=0.018*10^-4;
+Ap=0.012*10^-4;
+rho1=1030;
+rho2=1.24;
+Fm=60;
+//To Find
+vp=(Ap/Am)*(lp/lm)*vm;
+Fp=Fm*(lm/lp)^2*(vp/vm)^2*(rho1/rho2);
+disp("Velocity of Prototype ="+string(vp)+" m/sec");
+disp("Resistance of Prototype ="+string(Fp)+" Newton");