summaryrefslogtreecommitdiff
path: root/3647/CH5/EX5.3/ex5_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '3647/CH5/EX5.3/ex5_3.sce')
-rw-r--r--3647/CH5/EX5.3/ex5_3.sce25
1 files changed, 25 insertions, 0 deletions
diff --git a/3647/CH5/EX5.3/ex5_3.sce b/3647/CH5/EX5.3/ex5_3.sce
new file mode 100644
index 000000000..0a8ef4387
--- /dev/null
+++ b/3647/CH5/EX5.3/ex5_3.sce
@@ -0,0 +1,25 @@
+//Solutions to Problems In applied mechanics
+//A N Gobby
+clear all;
+clc
+//initialisation of variables
+v=(60*2*%pi)/60*8/12//ft/s
+x=8//in
+y=12//in
+c=4.76//in
+b=4.13//in
+e=10.0//in
+w=12.0//in
+f=3.55//in
+q=6.08//in
+k=1.95//in
+h=2.35//in
+//CALCULATIONS
+V1=v*(c/b)//ft/s
+V2=V1*(e/w)//ft/s
+V3=V2*(f/q)//ft/s
+K=V3*(k/h)//ft/s
+F=f*(x/y)//ft
+L=(F*y)/(f*x)//rad/s
+//RESULTS
+printf('the angular velocity length=% f rad/s',L)