summaryrefslogtreecommitdiff
path: root/2708/CH6/EX6.2
diff options
context:
space:
mode:
Diffstat (limited to '2708/CH6/EX6.2')
-rwxr-xr-x2708/CH6/EX6.2/ex_6_2.sce9
1 files changed, 9 insertions, 0 deletions
diff --git a/2708/CH6/EX6.2/ex_6_2.sce b/2708/CH6/EX6.2/ex_6_2.sce
new file mode 100755
index 000000000..a161e9e90
--- /dev/null
+++ b/2708/CH6/EX6.2/ex_6_2.sce
@@ -0,0 +1,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" )