Experiment 1 Advanced Control System Lab
Experiment 1 Advanced Control System Lab
THEORY:
In Servo applications, DC motors are generally used in the linear range of the
magnetization curve. Therefore, the air gap flux φ is proportional to the field current.
φ α If
φ = Kf If ,where Kf is a constant. ----------------------------- (1)
The torque Tm developed by the motor is proportional to the product of the armature
current and air gap flux.
Tm α φ Ia
Tm =Ki φ Ia = Ki Kf If Ia , where Ki is a constant --------------(2)
In the armature controlled DC motor, the field current is kept constant. So the above
equation can be written as
Tm = Kt Ia , Where Kt is known as motor torque constant.------ (3)
From equations (8) to (10) , the transfer function of the system is obtained as
Block diagram
Using the above equations, the block diagram for the armature controlled DC motor is
given below:
E(s)
+ θ (s)
ω(s) 1/[Ra+sLa] Kt 1/s[Js+B]
- Eb(s)
s Kb
Simulink Model of DC Servo Motor:
Parameters:
Ra=1
La=0.5
Kt=0.01
J=0.01
f=0.1
Kb=0.01
Vin=1
Program:
J=0.01;
f=0.1;
K=0.01;
R=1;
L=0.5;
s=tf('s');
P_motor=K/(s*((J*s+f)*(L*s+R)+K^2))
P_motor =
0.01
-------------------------------
0.005 s^3 + 0.06 s^2 + 0.1001 s