What is the difference between FRD and IDFRD

14 ビュー (過去 30 日間)
Alborz Sakhaei
Alborz Sakhaei 2020 年 7 月 24 日
編集済み: Alborz Sakhaei 2020 年 10 月 5 日
1- What is the difference between FRD and IDFRD?
2- Why FRD objects can not be directly used in simulink mdoels? (Why need to convert them to LTI objects via tfest so they can be used in Simulink models?)

採用された回答

Rajiv Singh
Rajiv Singh 2020 年 7 月 24 日
Both FRD and IDFRD are used to store Freqyency Response Data, that is, the complex frequency response vector (Mag.*exp(i*Phase)) measured over a given frequency grid. FRD belongs to Control System Toolbox. It has properties like ResponseData, and Frequency to store information on the frequency response.
IDFRD belongs to System Identification Toolbox. It extends FRD of Control System Toolbox to store additional information that is relevant for identification such as response covariance and spectrum information.
  • Either FRD or IDFRD can be used data source for identification of parametric models (transfer functions, state-space etc). For example, sys = tfest(FRD, n) creates an n-pole transfer function that fitsthe frequency response in FRD over its frequency range.
  • IDFRD can be an output of a non-paramteric estimation too. For example, the command SPA performs spectral analysis on a given time-domain data (that is, input and output signals) and returns the results as an IDFRD object. It contains the estimated frequency response in the property ResponseData, its covariance in the property CovarianceData, the estimated noise spectrum in the property SpectrumData, and its covariance in the property NoiseCovariance. You can "convert" this IDFRD into parametric form using commands such as TFEST, SSEST, PROCEST.
FRDs are non-parametric representation of linear dynamics. There is no underlying differential equation or difference equations stored in them. That is why they cannot be used directly in Simulink.
  1 件のコメント
Alborz Sakhaei
Alborz Sakhaei 2020 年 10 月 5 日
編集済み: Alborz Sakhaei 2020 年 10 月 5 日
I think it would be very useful to store differential equation in FRD object so they can be used directly in the simulink models, specially when used along side with Simulink Control Design Linear Analysis toolbox. This way all components can be contained withing the Simulink model with minimal scripting needed.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeTransfer Function Models についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by