second order variable coefficients ODE -so confused !!!

3 ビュー (過去 30 日間)
petter
petter 2012 年 7 月 12 日
Hi matlab person:
Nowdays, I am solving a second order variable coefficients ODE {x^2 y''+x y'-sin(y)cos(y)+x sin(y)^2-x^2 sin(y)cos(y)=0}. I feel there is no analytical solution, so I want to use ODE to get numerical solution.But I don't know how I should solve second order variable coefficients ODE through ODE45.
Any suggestion, any help is ok.
Thanks very much.
equation: x^2 y''+x y'-sin(y)cos(y)+x sin(y)^2-x^2 sin(y)cos(y)=0
boundary condition: y(0)=0;y'(0)=-0.126
  4 件のコメント
Jan
Jan 2012 年 7 月 12 日
編集済み: Jan 2012 年 7 月 12 日
@Yash: I definitely would not hand-code a Runge-Kutta manually, when Matlab offers more powerful ODE functions.
Jan
Jan 2012 年 7 月 12 日
@petter: Please consider, that the term "urgent" is not apropriate, when the answers are craeted by volunteers. Even the "please" does not shift the tone back to a friendly level sufficently.

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

回答 (1 件)

Jan
Jan 2012 年 7 月 12 日
編集済み: Jan 2012 年 7 月 12 日
You can convert the ODE system of order k for a problem of dimension d into a system of order 1 and dimension k*d. Instructions can be found at Wikipedia or in your Numerics script.
Then the documentation of ODE45 will help you to implement this in Matlab, especially the examples on "doc ode45".
  1 件のコメント
petter
petter 2012 年 7 月 12 日
編集済み: petter 2012 年 7 月 12 日
Jan simon, thank you very much for your reply and for your suggestion. I have thought this problem several days and asked other persons. This problem comes from the paper which I am preparing.So I used the term"urgent",may be that is not appropriate. sorry for this.
The following is my code, but there are several problem:
first defining function ***********************************************
function yprime = skyrmion(x,y)
k=0.95;
yprime = [y(2); -1/x*y(2)+1/x^2*sin(y(1))*cos(y(1))-4*k/pi* (1/x)*sin(y(1))^2+sin(y(1))*cos(y(1))]; ***********************************************************
Then transfer function
*******************************************************
xspan=[0.01,10];
y0=[-0.126;pi];
[x,y]=ode45('skyrmion',xspan,y0);
plot(x(:),y(:,2))
******************************************************
problem one:
Because The ODE was divided by x^2, so the x span can't use x==0. whether the code can be modified to not divide x^2.
problem two:
the results get by using my code are not consist with some papers.
so I want to know my code is right or wrong.
Thank you again.

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

カテゴリ

Help Center および File ExchangeOrdinary Differential Equations についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by