diff options
Diffstat (limited to '3647/CH4/EX4.2/ex4_2.sce')
-rw-r--r-- | 3647/CH4/EX4.2/ex4_2.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3647/CH4/EX4.2/ex4_2.sce b/3647/CH4/EX4.2/ex4_2.sce new file mode 100644 index 000000000..e4083cb59 --- /dev/null +++ b/3647/CH4/EX4.2/ex4_2.sce @@ -0,0 +1,13 @@ +//Solutions to Problems In applied mechanics +//A N Gobby +clear all; +clc
+//initialisation of variables
+a=10//ft/s
+x=1/12//ft/s
+g=32.2//ft
+//CALCULATIONS
+P=2*%pi*sqrt(x/a)//sec
+L=(P)/(2*%pi/sqrt(g))/2//ft
+//RESULTS
+printf('the simple pendulum =% f ft',L)
|