I have a system with two inputs and one common output.
Let inputs be in1, in2 and output - out.
So I have two transfer functions: out / in1, out / in2.
Using simulink I can use transfer fcn block for each transfer function and then sum their outputs to get a desired output.
But is it possible to join transfer functions out/in1, out/in2 somehow together and to use some simulink block to avoid summation of transfers functions outputs?
Thank you for your time and help in advance!
% in symbolic
syms Ht s D K Hg
TF1 = tf([D K],[4*Hg*Ht (2*Hg*D+2*Ht*D) (2*Hg*K+2*Ht*K) 0]);
TF2 = tf([-2*Ht -D -K],[4*Hg*Ht (2*Hg*D+2*Ht*D) (2*Hg*K+2*Ht*K) 0]);
% or in numerical way
Ht = 2.2667;
Hg = 0.92952;
D = 2.29;
K = 1.0216;
TF1 = tf([D K],[4*Hg*Ht (2*Hg*D+2*Ht*D) (2*Hg*K+2*Ht*K) 0]);
TF2 = tf([-2*Ht -D -K],[4*Hg*Ht (2*Hg*D+2*Ht*D) (2*Hg*K+2*Ht*K) 0]);