How to use rate limiter with square signal and variable step size?
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Jonathan
el 5 de Ag. de 2014
Respondida: Jonathan
el 6 de Ag. de 2014
Hi
Here's a screenshot of the model I'd like to set up.
.
I feed a customized rectangular signal to a rate limiter to avoid vertical slopes. The input signal is basically like this:
.
Unfortunately that doesn't seem to work. I'm using ode15s, it's a requirement. Here's the error message Simulink throws:
Error: Input signals to Rate Limiter '.../Rate Limiter' are neither discrete nor continuous sample time signals. Only discrete or continuous input signals are supported
Quite surprisingly I found a workaroud by adding an integrator directly followed by a derivative. This works:
.
But it's ugly and I'm getting some very annoying stability issues in some cases. And I doubt very much that it is considered "good practice".
So how is one supposed to use this rate limiter block in such a situation?
.
John
0 comentarios
Respuesta aceptada
Fernando
el 5 de Ag. de 2014
Hi John,
The problem you have is all about sample times, and sample times propagation. In your first example, there is probably no definition of sample time in any block, so that in the sample time propagation phase Simulink cannot determine the appropriate sample time for the block.
The workaround works because you've inserted an integrator, which has a defined continuous sample time. This is then back-propagated to the rate limiter block and to other blocks.
The easiest way to solve the problem in your first implementation is to select Sample time mode: continuous in the Rate Limiter Dialog Box.
0 comentarios
Más respuestas (1)
Ver también
Categorías
Más información sobre Sources en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!