update parameter during simulink simulation
5 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Stefano Di Benedetto
le 23 Juil 2018
Commenté : Ryan Takatsuka
le 25 Juil 2018
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 commentaire
Aquatris
le 23 Juil 2018
Did you try Switch blocks? or Matlab Function block where you can type out the thing you want as a script?
Réponse acceptée
Ryan Takatsuka
le 23 Juil 2018
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 commentaires
Ryan Takatsuka
le 25 Juil 2018
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:
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Gain Scheduling dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!