필터 지우기
필터 지우기

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!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Sources에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by