How to use rate limiter with square signal and variable step size?
9 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponse acceptée
Fernando
le 5 Août 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 commentaires
Plus de réponses (1)
Voir également
Catégories
En savoir plus sur Sources dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!