diff options
Diffstat (limited to '2381/CH1/EX1.6')
-rwxr-xr-x | 2381/CH1/EX1.6/ex_6.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/2381/CH1/EX1.6/ex_6.sce b/2381/CH1/EX1.6/ex_6.sce new file mode 100755 index 000000000..35b65d7b4 --- /dev/null +++ b/2381/CH1/EX1.6/ex_6.sce @@ -0,0 +1,13 @@ +//Example 6 // Period +clc; +clear; +close; +//given data : +g=9.8;// constant +l=1;// in m +theta_m1=60;// in degree +theta_m=%pi/3;// in radians +T0=round(2*%pi*sqrt(l/g)); +disp(T0,"(a). Time period for small displacement,T0(seconds) = ") +T=T0*(1+(theta_m^2/16)); +disp(T,"(b).Time period,T(seconds) = ") |