diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2021/CH17/EX17.5 | |
download | Scilab-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/CH17/EX17.5')
-rwxr-xr-x | 2021/CH17/EX17.5/EX17_5.pdf | bin | 0 -> 18871 bytes | |||
-rwxr-xr-x | 2021/CH17/EX17.5/EX17_5.sce | 13 |
2 files changed, 13 insertions, 0 deletions
diff --git a/2021/CH17/EX17.5/EX17_5.pdf b/2021/CH17/EX17.5/EX17_5.pdf Binary files differnew file mode 100755 index 000000000..a59473d6b --- /dev/null +++ b/2021/CH17/EX17.5/EX17_5.pdf diff --git a/2021/CH17/EX17.5/EX17_5.sce b/2021/CH17/EX17.5/EX17_5.sce new file mode 100755 index 000000000..cccda93c6 --- /dev/null +++ b/2021/CH17/EX17.5/EX17_5.sce @@ -0,0 +1,13 @@ +//Finding of Force Exerted
+//Given
+rho=1000;
+d=0.07;
+V=25;
+theta=20;
+theta2=15;
+//To Find
+A=(%pi/4)*d^2
+Fx=rho*A*V^2*(sin(%pi/9)+cos(%pi/12));
+Fy=rho*A*V^2*(sin(%pi/9)-sin(%pi/12));
+disp("Fx ="+string(Fx)+" Newtons");
+disp("Fy ="+string(Fy)+" Newtons");
|