Simulink Difference Equation Implementation

25 次查看(过去 30 天)
I have a homework(a). My professor ask me for implement a discrete pid controller in difference equation form to matlab function. This function block should run as a discrete pid controller block in simulink model(b). When simulation began, the Matlab function block is executed once. Because of for loop an array occurs. Then that array signal goes the plant. And this is not usefull. During the simulation what i want is every iteration of for loop gives a value and that value must go to plant. But i could not do this. The same issue happened previous homework(c). I don't even know whether this way is proper or not.
  4 个评论
Walter Roberson
Walter Roberson 2020-12-20
If you are using a discrete system then use https://www.mathworks.com/help/simulink/slref/memory.html memory block.
If you are using a continuous system, then you would have difficulty implementing something like the trapazoid rule.
Paul
Paul 2020-12-20
Hard to say how to make the two equivalent without knowing exactly what's inside the block C(s)1.

请先登录,再进行评论。

采纳的回答

Paul
Paul 2020-12-20
Maybe this example will help, which essentially illustrates the comment made by Alvery.
Consider a plant P(s) = 1/(s + 5) that is controlled via PI compensation with Ki = Kp = 1. The sample time of the discrete control is Ts = 0.01, with Ts defined as such in the base workspace. This system is modeled in the top half of this diagram, where the sample time parameter for the Zero Order Hold and Discrete Time Integrator blocks is set to Ts.
Now we wish to implement the PI control in a Matlab Function block as in the boltom half of the diagram. We have the following equation for the control input:
u[k] = x[k] + Kp*e[k] % Kp = 1
The difference equation for x[k] is determined from the z-transform of the integrator:
X(z)/E(z) = Ki*Ts/(z-1) % Ki = 1
(z-1)*X(z) = Ki*Ts*E(z)
x[k+1] - x[k] = Ki*Ts*e[k]
x[k+1] = Ki*Ts*e[k] + x[k]
so the PI function needs to impement the equations for u[k] and x[k]. Here's the function
function u = PI(e)
persistent x
% initialize the integrator output
if isempty(x)
x = 0;
end
Kp = 1;
Ki = 1;
Ts = 0.01; % needs to be same value as Ts defined in the workspace
% control at the current time step
u = Kp*e + x;
% update the integrator for the next time step
x = Ki*Ts*e + x;
end
And here is the scope from the model showing that the implementation works as expected:
  3 个评论
Tomàs
Tomàs 2024-5-30
What if you put a ZOH inbetween the Controller and the plant and replace the original ZOH by a "Rate Transition" black ?
From my understanding it looks more "academic" in this way. What do you think , Paul?
Paul
Paul 2024-5-30
编辑:Paul 2024-5-30
You could probably replace the ZOH on the error signal with a Rate Transition, but I'm pretty sure that, with proper parameter settings, the Rate Transition will just be a ZOH anyway. You could put a ZOH between the controller and the plant with same sample time as the controller, but we have to remember that the Simulink ZOH block isn't really the same as an "academic" ZOH that represnts a D/A converter. The output of the ZOH block can't have a continuous sample time; at least I don't think it can.

请先登录,再进行评论。

更多回答(0 个)

产品


版本

R2020a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by