summaryrefslogtreecommitdiff
path: root/1985/CH1/EX1.3/chapter1_Example3.sce
diff options
context:
space:
mode:
Diffstat (limited to '1985/CH1/EX1.3/chapter1_Example3.sce')
-rwxr-xr-x1985/CH1/EX1.3/chapter1_Example3.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/1985/CH1/EX1.3/chapter1_Example3.sce b/1985/CH1/EX1.3/chapter1_Example3.sce
new file mode 100755
index 000000000..9d063382a
--- /dev/null
+++ b/1985/CH1/EX1.3/chapter1_Example3.sce
@@ -0,0 +1,16 @@
+
+clc
+clear
+
+//INPUT DATA
+l=1.2;//Length of of bar in m
+
+//CALCULATIONS
+k=sqrt(l^2/12);//Radius of gyration in m
+T=sqrt(((k^2/(l/2))+(l/2))/9.8)*2*3.14;//Time period of the pendulum in s
+L=((9.8*T^2)/(4*3.14^2));//Length in m
+D=L-(l/2);//Another point where pendulum has same timeperiod in m
+
+//OUTPUT
+mprintf('The time period of pendulum is %3.3f s\nDistance of another point from centre of gravity on bar with same time period is %3.1f m',T,D)
+