フィルターのクリア

system of non linear equations

2 ビュー (過去 30 日間)
sepideh
sepideh 2023 年 10 月 16 日
コメント済み: sepideh 2023 年 10 月 24 日
Hello
I am dealing with a system of two non-linear equations and I tried to solve it by 'fsolve', but the solver stopped and could not fine the answers.
Would you please help me?
I attached the files

採用された回答

Torsten
Torsten 2023 年 10 月 16 日
%solving stsyem of nonlinear equation 3.31 and 3.32 Woods paper with fsolve
% eta_l= x1 , eta_u= x2
r=2;
v=20;
F=13/9;
fun= @(x)rooted(x,r,v,F);
x0 = [0 0];
x = fsolve(fun,x0)
No solution found. fsolve stopped because the problem appears regular as measured by the gradient, but the vector of function values is not near zero as measured by the value of the function tolerance.
x = 1×2
0 0
function f = rooted (x,r,v,F)
%UNTITLED3 Summary of this function goes here
% Detailed explanation goes here
% F<Fd Fd= 2.6 I put F=1.5
f(1)= (r*v-1)/(v*(r-1)) * ((r*v*x(1)^2-x(2)^2)/(r*v-1))^(3/2) - ...
(v-1)/(v*(r-1)) * ((v*x(1)^2-x(2)^2)/(v-1))^(3/2) - 9 ;
f(2)= x(2)^3/(r*v) + (v-1)/(v*(r-1)) * ((v*x(1)^2-x(2)^2)/(v-1))^(3/2) - ...
(r*v-1)/(r*v*(r-1)) * ((r*v*x(1)^2-x(2)^2)/(r*v-1))^(3/2) - 9*F;
end
  7 件のコメント
Torsten
Torsten 2023 年 10 月 24 日
I don't know what the reason for non-convergence is. The equations seem to be correct - and concerning parameters r, v and F and initial values for x - I don't know if they make sense.
sepideh
sepideh 2023 年 10 月 24 日
I chose r ,v and initial guess based on the paper and it should produces the graph I attached.
lower layer (red one) remained attached to the source, while upper layer (blue one) must over run and detached from the source.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSystems of Nonlinear Equations についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by