summaryrefslogtreecommitdiff
path: root/3594/CH14/EX14.13/Ex14_13.sce
diff options
context:
space:
mode:
Diffstat (limited to '3594/CH14/EX14.13/Ex14_13.sce')
-rw-r--r--3594/CH14/EX14.13/Ex14_13.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/3594/CH14/EX14.13/Ex14_13.sce b/3594/CH14/EX14.13/Ex14_13.sce
new file mode 100644
index 000000000..57d21a77b
--- /dev/null
+++ b/3594/CH14/EX14.13/Ex14_13.sce
@@ -0,0 +1,17 @@
+
+clc
+//given
+g=32.2//ft/s^2
+n=2000//rpm
+R=6//lb
+r=3//in
+L=11//in
+w=%pi*n/30
+n=L/r
+//minimum secondary force
+F1=2*R*w^2*r/(g*n*12)
+a=floor(F1)
+//maximum secondary force
+F2=6*R*w^2*r/(g*n*12)
+b=floor(F2)
+printf("\nMinimum secondary force = %.f lb\nMaximum secondary force = %.f lb",a,b)