Is it possible to use an FRD (Frequency Response Data) model in Simulink?
10 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Christopher
le 8 Avr 2011
Réponse apportée : Nils Schmidt
le 7 Fév 2020
Hello,
I am using Simulink to develop models of a dynamic structural system, and wish to use FRD estimates of the structural response in my simulations. However, I am unclear as to whether or not it is possible to use FRD objects in Simulink.
Can anyone advise me one way or the other? This doesn't seem to be covered in the Simulink documentation.
Thanks,
Chris
0 commentaires
Réponse acceptée
Arnaud Miege
le 8 Avr 2011
I'm afraid not. The way to do this would be with the LTI System block, but that only supports state-space, zero/pole/gain and transfer function LTI objects.
There are other ways in which you can incorporate frequency-domain estimated models in Simulink using the System Identification Toolbox. See this answer for more details.
HTH,
Arnaud
0 commentaires
Plus de réponses (2)
Joan Vazquez
le 23 Jan 2020
This may work:
sys = frd(response, frequency, 'FrequencyUnit', 'Hz');
opt = tfestOptions('EnforceStability', true);
TF = tfest(sys, n, opt);
and then use a transfer function block
0 commentaires
Nils Schmidt
le 7 Fév 2020
I am facing the same challenge, but it looks like you either need the controls and/or the identification toolbox to do the job.
I'm looking forward to other suggestions.
Regards
Nils
0 commentaires
Voir également
Catégories
En savoir plus sur Classical Control Design 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!