how can in make this transfer fnunction block in simulink ?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
sajad Tarverdian
el 7 de En. de 2024
Comentada: sajad Tarverdian
el 8 de En. de 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)
0 comentarios
Respuesta aceptada
Sam Chak
el 8 de En. de 2024
Editada: Sam Chak
el 8 de En. de 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)
Cv = 5;
Gf = LPF*(s*Cv)
Update: Block diagram
7 comentarios
Sam Chak
el 8 de En. de 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!
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!