summaryrefslogtreecommitdiff
path: root/3792/CH8/EX8.7/Ex8_7.sce
diff options
context:
space:
mode:
Diffstat (limited to '3792/CH8/EX8.7/Ex8_7.sce')
-rw-r--r--3792/CH8/EX8.7/Ex8_7.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/3792/CH8/EX8.7/Ex8_7.sce b/3792/CH8/EX8.7/Ex8_7.sce
new file mode 100644
index 000000000..4c0636b10
--- /dev/null
+++ b/3792/CH8/EX8.7/Ex8_7.sce
@@ -0,0 +1,10 @@
+// SAMPLE PROBLEM 8/7
+clc;funcprot(0);
+// Given data
+rbar=0.9;// m
+k_o=0.95;// The radius of gyration in m
+g=9.81;// The acceleration due to gravity in m/s^2
+
+// Calculation
+tau=2*%pi*sqrt(k_o^2/(g*rbar));// The period for small oscillations about the pivot in s
+printf("\nThe period for small oscillations about the pivot,tau=%1.2f s",tau);