summaryrefslogtreecommitdiff
path: root/2021/CH20/EX20.6
diff options
context:
space:
mode:
Diffstat (limited to '2021/CH20/EX20.6')
-rwxr-xr-x2021/CH20/EX20.6/EX20_6.pdfbin0 -> 18107 bytes
-rwxr-xr-x2021/CH20/EX20.6/EX20_6.sce19
2 files changed, 19 insertions, 0 deletions
diff --git a/2021/CH20/EX20.6/EX20_6.pdf b/2021/CH20/EX20.6/EX20_6.pdf
new file mode 100755
index 000000000..066f92882
--- /dev/null
+++ b/2021/CH20/EX20.6/EX20_6.pdf
Binary files differ
diff --git a/2021/CH20/EX20.6/EX20_6.sce b/2021/CH20/EX20.6/EX20_6.sce
new file mode 100755
index 000000000..2c9db2af9
--- /dev/null
+++ b/2021/CH20/EX20.6/EX20_6.sce
@@ -0,0 +1,19 @@
+//Finding of Maximum Speed
+//Given
+D=0.125;
+L=0.3;
+hs=4.5;
+ds=0.075;
+l=6.8;
+h=2.6;
+g=9.81;
+H=10.3;
+//TO Find
+A=(%pi/4)*D^2;
+a=(%pi/4)*(ds)^2;
+r=L/2;
+ha=H-h-hs;
+Z=(ha*g*a)/(l*A*r);
+Z1=sqrt(Z);
+N=(Z1*60)/(2*%pi);
+disp("Maximum Speed ="+string(N)+" rpm");