Can two first order transfer functions be added together in matlab to make a second order transfer function

21 views (last 30 days)
As the title says is this possible I have
g=(31.2)/(155*s+1)
and
g1=(4)/(172*s+1)
if i then do
g2=(g+g1) does this give the correct second order tf

Answers (3)

Daniel
Daniel on 4 Feb 2014
Thanks so that also means putting two first order transfer functions in series on simulink does not make it a second order system?
Given the two transfer functions i have for two responses to level and pressure when a given step change was implemented in a valve how would i make this second order transfer function

Paul
Paul on 4 Feb 2014
Edited: Paul on 4 Feb 2014
Yes, unlike Mischa said you do get a second order tf because g and g1 do not have a common denominator. The result is:
g2 =
5986 s + 35.2
---------------------
26660 s^2 + 327 s + 1
  4 Comments
Paul
Paul on 4 Feb 2014
Depends on what you do. Add them and you get this one, multiply and you get the 124.8 one. In the question Daniel said he wanted to add them, but in a reply he said he wanted two transfer functions in series so you have to multiply.

Sign in to comment.


Daniel
Daniel on 4 Feb 2014
spot on that thanks lads

Categories

Find more on Modeling in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!