How to customize a Built-in PID Block?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
I am using a PID controller in a feedback system. I need to change the gain's multiplication type from element-wise to the matrix. I right clicked on the PID block then from link options, I disabled the link. Now after I looked under the mask, I could change the Gain's multiplication type. but after I save the model and run the simulation again everything goes back to its initial settings like I never applied any change! So my question is How can I customize the PID block in SIMULINK?
2 comentarios
Ryan G
el 8 de Oct. de 2012
Since you are doing matrix multiplication are you implying that this will have more than 1 input to the PID?
Respuesta aceptada
Arkadiy Turevskiy
el 8 de Oct. de 2012
Editada: Arkadiy Turevskiy
el 8 de Oct. de 2012
Hello Mike,
At the moment, you won't be able to customize the standard PID block and still retain the automatic tuning functionality. The best workaround I can suggest is creating your own block for implementation, and using the standard block for tuning. Once the gain are tuned using the standard block, you can use them in your customized block. You could probably somewhat automate the process by using block callbacks and variants.
Arkadiy
2 comentarios
Arkadiy Turevskiy
el 19 de Oct. de 2012
Hello Mike, PID Controller block in Simulink, as well as the PID Tuner, only work on SISO systems. For a MIMO system, you need to specify your controller as a set of SISO PID loops. PID Tuner would not be able to tune a multi-loop design, you will need to use tools from Robust Control Toolbox, like shown in this example.
Arkadiy
Más respuestas (2)
Azzi Abdelmalek
el 4 de Oct. de 2012
Editada: Azzi Abdelmalek
el 4 de Oct. de 2012
I see your problem, but you can change these setting by code, just after loading your model named 'model.mdl'
set_param('model/PID Controller/Proportional Gain','Multiplication','Matrix(K*u)')
or you can associate this code with your model:
right click on your model- properties-callbacks-init Fcn (copy and paste the code)
10 comentarios
Azzi Abdelmalek
el 6 de Oct. de 2012
Editada: Azzi Abdelmalek
el 6 de Oct. de 2012
I think the setting vanishes just when the simultion start, not after like I said. I suggest to Edit mask of your PID block then unmask it. when you start simulations other errors will occur, asking about:
- output/param (min/max). set them to []
- datatype(etc...) set them to double
save the target of this link
Babak
el 3 de Oct. de 2012
You don't want to edit Simulink's Built in blocks.
Instead you want to create your own custom blocks. You could do it with creating an S-function block and creating a mask for it or making a MATLAB based block which runs an m-file.
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!