フィルターのクリア

how can in make this transfer fnunction block in simulink ?

2 ビュー (過去 30 日間)
sajad Tarverdian
sajad Tarverdian 2024 年 1 月 7 日
コメント済み: sajad Tarverdian 2024 年 1 月 8 日
I want to complete the following loop but I don't know how to create the sCv block.
how can i make this block in simulink?
Cv is a constant value (Cv=5)

採用された回答

Sam Chak
Sam Chak 2024 年 1 月 8 日
編集済み: Sam Chak 2024 年 1 月 8 日
If your LPF has a strictly proper transfer function, you can incorporate 's*Cv' into the LPF transfer function block through multiplication. See the example below:
s = tf('s');
fc = 10e3;
LPF = fc/(s + fc)
LPF = 10000 --------- s + 10000 Continuous-time transfer function.
Cv = 5;
Gf = LPF*(s*Cv)
Gf = 50000 s --------- s + 10000 Continuous-time transfer function.
Update: Block diagram
  7 件のコメント
Sam Chak
Sam Chak 2024 年 1 月 8 日
@sajad Tarverdian, I'm glad it works out/ If you find the solution helpful, please consider clicking 'Accept' ✔ on the answer and voting 👍 for it. Thanks a bunch!
sajad Tarverdian
sajad Tarverdian 2024 年 1 月 8 日
sure

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

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by