How to solve 4 equations with 4 unknowns with bounds?

1 次查看(过去 30 天)
Hi everyone, I'm trying to solve this but the message displayed local minimum found and also the values of the x generated did not match with the boundary which was set ie. x(1)+x(2) = Ym. It also says lsqnonlin stopped because the final change in the sum of squares relative to its initial value is less than the value of the function tolerance.Could anyone help with this? Many thanks!
clear; clc;
x0 = [50; 50; 50; 50;];
options = optimoptions('fsolve','Display','iter');
%[x,fval] = fsolve(@myfun,x0,options)
lb = [0; 0; 0; 0;];
ub = [100; 100; 100; 100;];
x = lsqnonlin(@myfun,x0,lb,ub)
myfun(x)
function F = myfun(x)
A = 87.3145;
B = -0.289762;
C = 0.0000199677;
alpha = 0.4705;
Xm = 20;
Ym = 27.5;
F = [x(1)+x(2)-Ym;
x(3)+x(4)-Xm;
A*exp(B*x(3)^0.5 - C*x(3)^3) - x(1);
A*exp(B*x(4)^0.5 - C*x(4)^3) - x(2);
Ym/alpha - ((1-alpha)/alpha)*x(2) - x(1);
Xm/alpha - ((1-alpha)/alpha)*x(4) - x(3);
]
end

采纳的回答

Alan Weiss
Alan Weiss 2019-4-22
  1. You set options for fsolve, but then call lsqnonlin. This is a mistake.
  2. You do not pass options to the solver. This might be a mistake.
  3. You have six equations in four unknowns. Generally, you should not expect a solution to such a system, only a point that is a local minimum of the sum of squares.
Alan Weiss
MATLAB mathematical toolbox documentation
  1 个评论
KY
KY 2019-4-23
Thank you Alan. I've edited it, add a tighter constraint based on my situation, and it works.
x0 = [10; 10; 10; 10;];
%options = optimoptions('fsolve','Display','iter');
%[x,fval] = fsolve(@myfun,x0,options)
lb = [5.31; 5.31; 0.68; 0.68;];
ub = [68.80; 68.80; 37.24; 37.24;];
x = lsqnonlin(@myfun,x0,lb,ub)
myfun(x)
function F = myfun(x)
A = 87.3145;
B = -0.289762;
C = 0.0000199677;
alpha = 0.3935;
Xm = 20;
Ym = 22.5;
F = [ A*exp(B*x(3)^0.5 - C*x(3)^3) - x(1);
A*exp(B*x(4)^0.5 - C*x(4)^3) - x(2);
Ym/alpha - ((1-alpha)/alpha)*x(2) - x(1);
Xm/alpha - ((1-alpha)/alpha)*x(4) - x(3);
]
end

请先登录,再进行评论。

更多回答(1 个)

Alex Sha
Alex Sha 2019-5-16
Refer the results below:
x1: 7.73410323214524
x2: 32.0801819920043
x3: 33.4573119565274
x4: 11.2688338748665

类别

Help CenterFile Exchange 中查找有关 Solver Outputs and Iterative Display 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by