Solve nonlinear equation with different parameters
이 질문을 팔로우합니다.
- 팔로우하는 게시물 피드에서 업데이트를 확인할 수 있습니다.
- 정보 수신 기본 설정에 따라 이메일을 받을 수 있습니다.
오류 발생
페이지가 변경되었기 때문에 동작을 완료할 수 없습니다. 업데이트된 상태를 보려면 페이지를 다시 불러오십시오.
이전 댓글 표시
Hello,
I would like to solve a (quite complicated) equation that looks like this:
pi/2*C*x + 0.5*(3 - gamma^2 - 2*gamma)*C*V^2 + 2*A*V + 2*x*B^2 - pi/2*F;
where gamma is also a function of x and it's defined as following:
gamma = gamma0*exp(-D*atan((B*x)./(C*Vdc)))*sqrt(1+((B*x)/(C*V)));
So, in the end, it can be considered as one (long) equation.
The unkowns are x and Vdc. I was thinking of defining the value of Vdc as a linsopace vector, for example, and see the value of x for each variation of Vdc (by making a loop). The question is: how can I solve the equation?
Also, would it be possible to solve the same equation by making varying other parameters of it (by making a loop on them)?
Thank you in advance for your help!
채택된 답변
Star Strider
2019년 2월 14일
Do something like this (although with the correct values for the constants):
A = 13;
B = 5;
C = 7;
D = 3;
F = 11;
V = 42;
gamma0 = 31;
gamma = @(x,Vdc) gamma0*exp(-D*atan((B*x)./(C*Vdc)))*sqrt(1+((B*x)/(C*V)));
eqn = @(x,Vdc) pi/2*C*x + 0.5*(3 - gamma(x,Vdc).^2 - 2*gamma(x,Vdc))*C*V^2 + 2*A*V + 2*x*B^2 - pi/2*F;
Vdc = linspace(0, 10, 5);
for k1 = 1:numel(Vdc)
xs(k1) = fsolve(@(x) eqn(x,Vdc(k1)), 1);
end
figure
plot(Vdc, xs)
grid
Experiment to get the result you want.
댓글 수: 12
When computing, I get the following error:
Objective function is returning undefined values at initial point. FSOLVE cannot continue.
How should I proceed?
Walter Roberson
2019년 2월 15일
편집: Walter Roberson
2019년 2월 18일
don't start at 0. You divide by something times the current vdc value which generates a divide by 0 when the vdc is 0.
@Walter — Thank you.
@letoppina — Note that the initial estimate I use here is 1.
Thanks, the error was on the initial condition (although the ouput is still not the one I expected..).
Moreover, if i want to make varying another variable involved in the equations (let's say for example B), should I just make another loop outside the existing one?
As always, my pleasure.
‘... should I just make another loop outside the existing one?’
That is likely the best approach to change one other variable.
Hi,
sorry to bother again but I have another problem: when I compute, xs becomes a vector composed of values all equal to the initial condition (whatever I put in). Why?
I have no idea.
What values are you using for the parameters?
Also, post your code.
here is the code I am using now (I have modified a little the equation involved since I am making a test but the pricniple should be the same):
clc
clear all
close all
f0 = 170;
w0 = 2*pi*f0;
beta = 0.1;
L = 28e-3;
C0 = 50e-9;
alpha = 1e-3;
C = 0.0219;
wsw = 1/(sqrt(L*C0));
Rsw = 200;
M = 20e-4;
acc = 0.2;
Fm = M*acc;
gamma0 = exp(-(Rsw*pi)/(2*L*wsw));
Vdc = linspace(0.1e-12, 20, 100);
eqn = @(x,Vdc) pi/2*C*w0.*x^2 + 1/2*C0*(1 - gamma0^2).*Vdc.^2 + Vdc.*2*alpha.*x - (1-gamma0)*C0.*Vdc.^2 - pi/2*Fm.*x;
for ii=1:length(Vdc)
xs(ii) = fsolve(@(x) eqn(x,Vdc(ii)), 0.01e-13)
end
figure
plot(Vdc, xs)
grid
Your initial estimate in your fsolve call is sufficiently close to 0 that your function is 0 there, satisfying the criteria fsolve uses as its convergence test.
You can change the convergence criterion using an options structure, however it’s easier to try a different starting value. You will get what appears to be an acceptable result with this call:
xs(ii) = fsolve(@(x) eqn(x,Vdc(ii)), 1);
Thank you for your answer. The reason I put such a small value as initial condition is because the order of magnitude of my solution has to be anyway between 10^-6 and 10^-4. How is it possible to change the convergence criterion?
‘the order of magnitude of my solution has to be anyway between 10^-6 and 10^-4’
True. However fsolve is a zero-finding function, so if you give it something very close to 0 initially, it is satisfied that it has solved the problem and stops iterating. The solution it arrives at is the value of the parameter of interest in your function that makes your function sufficiently close to 0.
You can change the various options with the optimoptions (link) function. However there is no need for you to do that, since fsolve is functioning normally, and delivers a reasonable result if you let it find the value of the parameter that results in your function being sufficiently close to 0.
Note that instead of passing a scalar x0 you can pass a vector with two elements; fsolve will only search within the given range. This does require that the function has a different sign at the two endpoints.
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Systems of Nonlinear Equations에 대해 자세히 알아보기
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!웹사이트 선택
번역된 콘텐츠를 보고 지역별 이벤트와 혜택을 살펴보려면 웹사이트를 선택하십시오. 현재 계신 지역에 따라 다음 웹사이트를 권장합니다:
또한 다음 목록에서 웹사이트를 선택하실 수도 있습니다.
사이트 성능 최적화 방법
최고의 사이트 성능을 위해 중국 사이트(중국어 또는 영어)를 선택하십시오. 현재 계신 지역에서는 다른 국가의 MathWorks 사이트 방문이 최적화되지 않았습니다.
미주
- América Latina (Español)
- Canada (English)
- United States (English)
유럽
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)
