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 --- 1325/CH2/EX2.4/ex2_4.sce | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 1325/CH2/EX2.4/ex2_4.sce (limited to '1325/CH2/EX2.4/ex2_4.sce') diff --git a/1325/CH2/EX2.4/ex2_4.sce b/1325/CH2/EX2.4/ex2_4.sce new file mode 100644 index 000000000..f0f9e39dd --- /dev/null +++ b/1325/CH2/EX2.4/ex2_4.sce @@ -0,0 +1,18 @@ +//to find length of equivalent simple pendulum +//gravitaional force (g)=32.2 ft/s^2 +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