summaryrefslogtreecommitdiff
path: root/3648/CH7/EX7.4/Ex7_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '3648/CH7/EX7.4/Ex7_4.sce')
-rw-r--r--3648/CH7/EX7.4/Ex7_4.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/3648/CH7/EX7.4/Ex7_4.sce b/3648/CH7/EX7.4/Ex7_4.sce
new file mode 100644
index 000000000..ae7f6df46
--- /dev/null
+++ b/3648/CH7/EX7.4/Ex7_4.sce
@@ -0,0 +1,10 @@
+//Example 7_4
+clc();
+clear;
+//To find out how many revolutions does it turn before rest
+wf=0 //units in rev/sec
+w0=3 //units in rev/sec
+t=18 //units in sec
+alpha=(wf-w0)/t //units in rev/sec^2
+theta=(w0*t)+0.5*(alpha*t^2) //units in rev
+printf("Number of revolutions does it turn before rest is theta=%d rev",theta)