Determine transfer function from block diagram

226 ビュー (過去 30 日間)
Giorgos Papakonstantinou
Giorgos Papakonstantinou 2016 年 4 月 11 日
編集済み: Rick Rosson 2016 年 4 月 12 日
I am having trouble to define in matlab the transfer function of the following block diagram.
Gc represents the controller which produces a signal Fs,
G11 is in series with Gc.
So they may be combined to:
series(Gc, G11)
Based on superposition principal I can assume that the disturbance signal z0*G12 is zero. Thus I may find the transfer function of the closed loop path. That is:
feedback(series(Gc, G11),1)
How can I find the transfer function of the system by also take into account the disturbance z0*G12?

採用された回答

Rick Rosson
Rick Rosson 2016 年 4 月 12 日
編集済み: Rick Rosson 2016 年 4 月 12 日
Please try:
H = feedback(series(Gc,G11)+G12*Z0,1);
where Z0 is the Laplace Transform of the disturbance signal z0(t), assuming the disturbance signal is deterministic.
If, on the other hand, the disturbance signal is stochastic, then Z0 is the square root of the Power Spectral Density of z0(t). In particular, if z0(t) represents white noise, then Z0 is simply a constant with respect to frequency, with a value equal to the RMS voltage of the disturbance signal's autocorrelation function.
  1 件のコメント
Giorgos Papakonstantinou
Giorgos Papakonstantinou 2016 年 4 月 12 日
Thank you for you answer. I will get back to you when I try it.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSpectral Measurements についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by