ebook img

Control Systems with Scilab by Aditya Sengupta, IIT Bombay - scilab.in PDF

65 Pages·2010·0.64 MB·English
Save to my drive
Quick download
Download
Most books are stored in the elastic cloud where traffic is expensive. For this reason, we have a limit on daily download.

Preview Control Systems with Scilab by Aditya Sengupta, IIT Bombay - scilab.in

Control Systems with Scilab Aditya Sengupta IndianInstituteofTechnologyBombay [email protected] December 1, 2010, Mumbai A simple first order system // Defining a first order system: s = %s // The quicker alternative to using s = poly(0, ’s’) K = 1, T = 1 // Gain and time constant SimpleSys = syslin(’c’, K/(1+T*s)) AdityaSengupta,EE,IITB CACSDwithScilab Simulating the system- Step test t=0:0.01:15; y1 = csim(’step’, t, SimpleSys); //step response plot(t, y1) AdityaSengupta,EE,IITB CACSDwithScilab Simulating the system- Sine test u2=sin(t); y2 = csim(u2, t, SimpleSys); //sine response plot(t, [u2; y2]’) AdityaSengupta,EE,IITB CACSDwithScilab Simulating the system- Sine test u3=sin(5*t); y3 = csim(u3, t, SimpleSys); //sine response at different frequency plot(t, [u3; y3]’) AdityaSengupta,EE,IITB CACSDwithScilab Root Locus evans(SimpleSys) AdityaSengupta,EE,IITB CACSDwithScilab Bode Plot fMin=0.01, fMax=10 bode(SimpleSys, fMin, fMax) AdityaSengupta,EE,IITB CACSDwithScilab Second Order Systems- Overdamped p=sˆ2+9*s+9 OverdampedSystem= syslin(’c’, 9/p) roots(p) AdityaSengupta,EE,IITB CACSDwithScilab Second Order Systems- Overdamped p=sˆ2+9*s+9 OverdampedSystem= syslin(’c’, 9/p) roots(p) AdityaSengupta,EE,IITB CACSDwithScilab Second Order Systems- Overdamped y4 = csim(’step’, t, OverdampedSystem); plot(t, y4) AdityaSengupta,EE,IITB CACSDwithScilab

Description:
Dec 1, 2010 Control Systems with Scilab. Aditya Sengupta CACSD with Scilab .. We design our PID controller by eliminating the steady state error.
See more

The list of books you might like

Most books are stored in the elastic cloud where traffic is expensive. For this reason, we have a limit on daily download.