summaryrefslogtreecommitdiff
path: root/3648/CH7/EX7.2
diff options
context:
space:
mode:
Diffstat (limited to '3648/CH7/EX7.2')
-rw-r--r--3648/CH7/EX7.2/Ex7_2.sce9
-rw-r--r--3648/CH7/EX7.2/Ex7_2.txt1
2 files changed, 10 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)
diff --git a/3648/CH7/EX7.2/Ex7_2.txt b/3648/CH7/EX7.2/Ex7_2.txt
new file mode 100644
index 000000000..92552e137
--- /dev/null
+++ b/3648/CH7/EX7.2/Ex7_2.txt
@@ -0,0 +1 @@
+Average angular velocity is w=188 rad/sec \ No newline at end of file