summaryrefslogtreecommitdiff
path: root/371/CH12/EX12.8/12_8.sci
blob: 7c2d7fdcd9cfe79089441b9074907616cd127811 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//Controllers and Their Optimisation//
//Example 12.8//
printf('Response for an AVO system');
G=10;//smaller time constant in ms//
Tf=4.7*G;//time taken by the system to achiecve its final output for firsttime//
printf('\ntime taken by the system to achieve its final value=Tf=%fms',Tf);
printf('\nMaximum overshoot for a symmetrically optimised system is 4.3 percent');
Ts=8.4*G;//settling time in ms//
printf('\nSettling time=Ts=%fms',Ts);
printf('\nResponse for an SO system');
G=10;//smaller time constant in ms//
Tf=3.1*G;//time taken by the system to achiecve its final output for firsttime//
printf('\ntime taken by the system to achieve its final value=Tf=%fms',Tf);
printf('\nMaximum overshoot for a symmetrically optimised system is 43 percent');
Ts=16.6*G;//settling time in ms//
printf('\nSettling time=Ts=%fms',Ts);