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/CH20/EX20.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/CH20/EX20.5')
-rwxr-xr-x | 2021/CH20/EX20.5/EX20_5.pdf | bin | 0 -> 20640 bytes | |||
-rwxr-xr-x | 2021/CH20/EX20.5/EX20_5.sce | 21 |
2 files changed, 21 insertions, 0 deletions
diff --git a/2021/CH20/EX20.5/EX20_5.pdf b/2021/CH20/EX20.5/EX20_5.pdf Binary files differnew file mode 100755 index 000000000..f64c29471 --- /dev/null +++ b/2021/CH20/EX20.5/EX20_5.pdf diff --git a/2021/CH20/EX20.5/EX20_5.sce b/2021/CH20/EX20.5/EX20_5.sce new file mode 100755 index 000000000..099538353 --- /dev/null +++ b/2021/CH20/EX20.5/EX20_5.sce @@ -0,0 +1,21 @@ +//Finding of Pmax ,Pressure at begining and end of Stroke
+//Given
+D=0.2;
+L=0.4;
+l=6;
+ds=0.1;
+hs=3.5;
+H=10.3;
+N=35;
+g=9.81;
+//To Find
+A=(%pi/4)*D^2;
+a=(%pi/4)*(ds)^2;
+r=L/2;
+Z=(2*%pi*N)/60;
+Pmax=(l/g)*(A/a)*r*Z^2;
+P=hs+Pmax;
+P1=H-P;
+disp("Pmax ="+string(Pmax)+" meter");
+disp("Pressure at Begining ="+string(P)+" meter");
+disp("Pressure at End ="+string(P1)+" meter");
|