diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /371/CH12/EX12.6/12_6.sci | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '371/CH12/EX12.6/12_6.sci')
-rwxr-xr-x | 371/CH12/EX12.6/12_6.sci | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/371/CH12/EX12.6/12_6.sci b/371/CH12/EX12.6/12_6.sci new file mode 100755 index 000000000..68c17530f --- /dev/null +++ b/371/CH12/EX12.6/12_6.sci @@ -0,0 +1,11 @@ +//Controllers and Their Optimisation//
+//Example 12.6//
+G=20;//smaller time constant in ms//
+Tn=4*G;//time constant of the controller in ms//
+printf('time constant of the controller=Tn=%fms',Tn);
+T1=170;//bigger time constant in ms//
+V=T1/(2*G);//gain of the control system//
+printf('\nGain of the control system=V=%f',V);
+Tf=3.1*G;//time taken by the system to achiecve its final value on step input//
+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');
\ No newline at end of file |