how can in make this transfer fnunction block in simulink ?

2 vues (au cours des 30 derniers jours)
sajad Tarverdian
sajad Tarverdian le 7 Jan 2024
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)

Réponse acceptée

Sam Chak
Sam Chak le 8 Jan 2024
Modifié(e) : Sam Chak le 8 Jan 2024
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 commentaires
Sam Chak
Sam Chak le 8 Jan 2024
@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 le 8 Jan 2024
sure

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Simulink 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!

Translated by