summaryrefslogtreecommitdiff
path: root/3648/CH7/EX7.3/Ex7_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '3648/CH7/EX7.3/Ex7_3.sce')
-rw-r--r--3648/CH7/EX7.3/Ex7_3.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/3648/CH7/EX7.3/Ex7_3.sce b/3648/CH7/EX7.3/Ex7_3.sce
new file mode 100644
index 000000000..f4e804e63
--- /dev/null
+++ b/3648/CH7/EX7.3/Ex7_3.sce
@@ -0,0 +1,10 @@
+//Example 7_3
+clc();
+clear;
+//To find average angular acceleration
+wf=240 //units in rev/sec
+w0=0 //units in rev/sec
+t=2 //units in minutes
+t=t*60 //units in sec
+alpha=(wf-w0)/t //units in rev/sec^2
+printf("Average angular acceleration is alpha=%d rev/sec^2",alpha)