update parameter during simulink simulation
5 次查看(过去 30 天)
显示 更早的评论
I have a PID controller which provide to heat up water in a tank with temperature target set to 35°C. Now, once the target is reached, i want to stop the PID controller working and let drop water temperature till 30°C; only when the temperature is below 30°C i want to use again PID controller to reach water again to its target temperature. To do this i need to determinate with a parameter when the tank is warming up and when it is cooling down; since the calculation based on temperature's derivative is unsteable, i want to use a parameter (A) which is =1 when T>=35°C and it is -1 when T<=30°C and in all the others possible case it is the same value of the last calculate value. How can i do that in Simulink? Thank you :)
1 个评论
Aquatris
2018-7-23
Did you try Switch blocks? or Matlab Function block where you can type out the thing you want as a script?
采纳的回答
Ryan Takatsuka
2018-7-23
If you use external gains for the PID block, you can easily modify them during the simulation. Because you want the PID to switch between active and inactive, I would recommend using a parameter A which switches between 0 and 1 instead of -1 and 1.
This way, you can just multiply the PID gains by parameter A at any time and it will automatically cause the PID gains to drop to 0 when T>35°C.
See the attached images for an example of this.
2 个评论
Ryan Takatsuka
2018-7-25
Algebraic loops shouldn't be caused by a PID block alone, and are most likely due to some variable looping back on itself during the same time step. These can generally be fixed by adding small delays between signals that are causing the warning. For the most part, these will just cause the simulation to run slower.
Here are some references:
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Gain Scheduling 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!