blob: a161e9e90eaddf68e4e81956992f7cf58c113b98 (
plain)
1
2
3
4
5
6
7
8
9
|
//Example 6.2 // Maximum velocity in SHM
clc;
clear;
//given data :
A=.06;// Amplitude of SHM in m
T=31.4;// period in sec
w=2*%pi/T;// angular frequency in rad/sec
V=A*w;// maximum velocity in m/s
disp(V,"Maximum velocity in m/s" )
|