To simulate the PD Controller for unit step input.
Circuit Diagram:
Plant:A system to be controlled.
Controller:Provides excitation for the plant; Designed to control the overall system behavior.
Proportional Derivative Control: As the name indicates, it is a combination of proportional and derivative control actions. It is widely used in industrial applications. Its control action is mathematically expressed as
This control action sometimes fails to eliminate the offset of proportional controllers. It is also called rate control action. In P-D controller, the output varies with respect to rate of change of actuating error signal.
Transfer Function
????(????)/????(????) = ????DS + K P/S2+ (10 + ????D)S + (20+ KP)
Let reduce the Kp to 300 and Kd equal to 10
Program:
num = 1;
den = [ 1 10 20];
Plant = tf(num,den);
Step(plant);
Kp = 300;
Kd = 10;
Contr = tf([Kd Kp],1);
Sys_cl=feedback(contr*plant,1)
t = 0:0.01:0.2;
step(sys_cl,t)
Observations:
Result:Simulation of P-D Controller done successfully by using MATLAB
Get all latest content delivered to your email a few times a month.