From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3594/CH2/EX2.4/ex2_4.sce | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 3594/CH2/EX2.4/ex2_4.sce (limited to '3594/CH2/EX2.4/ex2_4.sce') 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) -- cgit