Understanding Multiple Input-Output Control in Steady State Infusion Rates

  • Thread starter Thread starter gfd43tg
  • Start date Start date
  • Tags Tags
    Control Multiple
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
1 reply · 2K views
gfd43tg
Gold Member
Messages
949
Reaction score
48

Homework Statement


upload_2015-12-2_12-42-24.png

upload_2015-12-2_12-42-43.png


Homework Equations

The Attempt at a Solution


(a) I find the steady state values (s=0)
Code:
syms s
k11 = -6;
k12 = 3;
k21 = 12;
k22 = 35;

G = [k11 k12; k21 k22];
Ghat = [k22/(k11*k22-k12*k21) -k12/(k11*k22-k12*k21); -k21/(k11*k22-k12*k21) k11/(k11*k22-k12*k21)];

Lam = G*Ghat
Lam

Lam =

  1  0
  0  1
So I know that input 1 goes with output 1, and input 2 goes with output 2.

(b) I am not sure how I should do this, but I look at steady state values
Code:
G =

  -6  3
  12  35
But I don't really know how steady state infusion rates can be zero, yet you can increase Cardiac output by infusion? I don't understand how to solve this question.
 
I've solved the problem!