diff options
Diffstat (limited to '3647/CH3/EX3.1/ex3_1.sce')
-rw-r--r-- | 3647/CH3/EX3.1/ex3_1.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3647/CH3/EX3.1/ex3_1.sce b/3647/CH3/EX3.1/ex3_1.sce new file mode 100644 index 000000000..f92766df9 --- /dev/null +++ b/3647/CH3/EX3.1/ex3_1.sce @@ -0,0 +1,18 @@ +//Solutions to Problems In applied mechanics +//A N Gobby +clear all; +clc
+//axis of rotation thus balancing the flywheel
+//initialisation of variables
+w=2000//lbf
+q=0.01//in
+f=600//rev/min
+r=18//in
+g=32.2//ft^2
+d=12//in
+s=1.5//ft
+//CALCULATIONS
+F=(w/g)*(f*2*%pi/60)^2*(q/d)//lbf
+W=w*(q/d)/s//lbf
+//RESULTS
+printf('the axis of rotation thus balancing the flywheel=% f lbf',W)
|