Question: Q _ lung = 2 ; Q _ liver = 0 . 5 ; Q _ ot = 1 . 5 ; R = 0

Q_lung =2;
Q_liver =0.5;
Q_ot =1.5;
R =0.60;
C_in =375;
V_max_lung =8.5;
V_max_liver =123;
V_lung =0.08;
V_liver =0.322;
A =[Q_lung - R*(Q_liver + Q_ot),0;
Q_liver, -Q_liver];
b =[V_max_lung * V_lung -(1- R)* Q_lung * C_in;
V_max_liver * V_liver];
x = A \ b;
C_lung = x(1);
C_liver = x(2);
disp(['Concentration in the lung compartment: ', num2str(C_lung),'M']);
disp(['Concentration in the liver compartment: ', num2str(C_liver),'M']);
i have the vector b correct but it tells me that my matrix is wrong.
Q _ lung = 2 ; Q _ liver = 0 . 5 ; Q _ ot = 1 . 5

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Mechanical Engineering Questions!