summaryrefslogtreecommitdiff
path: root/3137/CH12/EX12.25/Ex12_25.sce
blob: 46a441937922714615ec4433435d91f0bce255cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//Initilization of variables
theta=linspace(0,360,13)
//Calculations
//Defining everything in terms of matrices 
t=(theta*%pi)/(180*6) //s converting degrees to radians
costheta=cosd(theta) 
sintheta=sind(theta)
x=2*costheta //ft
v=-12*sintheta //ft/s
a=-72*costheta //ft/s^2
//Plotting
subplot(221)
plot(t,x)
xlabel('t(s)')
ylabel('Displacement x(ft)')
subplot(222)
plot(t,v,t,0)
xlabel('t(s)')
ylabel('Velocity v(ft/s)')
subplot(223)
plot(t,a)
xlabel('t(s)')
ylabel('Acceleration a(ft/s^2)')
//Result
clc
printf('The results are the plots')