summaryrefslogtreecommitdiff
path: root/3648/CH7/EX7.2/Ex7_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '3648/CH7/EX7.2/Ex7_2.sce')
-rw-r--r--3648/CH7/EX7.2/Ex7_2.sce9
1 files changed, 9 insertions, 0 deletions
diff --git a/3648/CH7/EX7.2/Ex7_2.sce b/3648/CH7/EX7.2/Ex7_2.sce
new file mode 100644
index 000000000..caa49a2c8
--- /dev/null
+++ b/3648/CH7/EX7.2/Ex7_2.sce
@@ -0,0 +1,9 @@
+//Example 7_2
+clc();
+clear;
+//To find average angular velocity
+theta=1800 //units in rev
+t=60 //units in sec
+w=(theta/t) //units in rev/sec
+w=w*(2*%pi) //units in rad/sec
+printf("Average angular velocity is w=%d rad/sec",w)