diff options
Diffstat (limited to '3594/CH2/EX2.4/ex2_4.sce')
-rw-r--r-- | 3594/CH2/EX2.4/ex2_4.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/3594/CH2/EX2.4/ex2_4.sce b/3594/CH2/EX2.4/ex2_4.sce new file mode 100644 index 000000000..7c4349032 --- /dev/null +++ b/3594/CH2/EX2.4/ex2_4.sce @@ -0,0 +1,17 @@ +
+clc
+//given
+m1=150 //lb
+l=3//ft
+//number of oscillation per second is given by n
+printf("\n")
+n=(50/92.5)
+printf ("number of oscillation per second = %.2f\n",n)
+//length of simple pendulum is given by L=g/(2*%pi*n)^2
+L=32.2/(2*%pi*n)^2
+printf ("length of simple pendulum = %.2f ft\n",L)
+// distance of cg from point of suspension is given by a
+a=25/12
+k=(a*(L-a))^.5//radius of gyration
+moi=m1*k^2
+printf("The moment of inertia of rod is %.2f lb ft^2",moi)
|