blob: f4e804e63c57b77f0dbb3a11bea3e7e22979a0eb (
plain)
1
2
3
4
5
6
7
8
9
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)
|