diff options
Diffstat (limited to '3647/CH3/EX3.4/ex3_4.sce')
-rw-r--r-- | 3647/CH3/EX3.4/ex3_4.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3647/CH3/EX3.4/ex3_4.sce b/3647/CH3/EX3.4/ex3_4.sce new file mode 100644 index 000000000..eaec31ef3 --- /dev/null +++ b/3647/CH3/EX3.4/ex3_4.sce @@ -0,0 +1,16 @@ +//Solutions to Problems In applied mechanics +//A N Gobby +clear all; +clc
+//initialisation of variables
+w1=8//lbf
+s=3//ft
+m=35//lbf
+g=32.2//ft/s
+//CALCULATIONS
+U=sqrt(g*s)//ft/s
+T=w1+w1//lbf
+P=m-w1//lbf
+Umax=sqrt(P*g*s/w1)//ft/s
+//RESULTS
+printf('the centrifugal force=% f ft/s',Umax)
|