euler's method

9 次查看(过去 30 天)
taojian li
taojian li 2021-11-20
编辑: James Tursa 2021-11-20
I am trying to solve a equation but the dydt is wrong I guess? The original equation is y''+0.1y'+siny=0
h = 0.01;
x = 0:h:10;
y = zeros(size(x));
y(1) = 1;
n = numel(y);
for i = 1:n-1
dy = -0.1*y(2)+siny(1);
y(i+1) = y(i) + dy*h;
end

采纳的回答

Yongjian Feng
Yongjian Feng 2021-11-20
What is siny? Is it sin(y)?
Also you dy is a constant in the loop, only depends on y(2) and y(1). Maybe it should depend on y(i) instead?
  2 个评论
Yongjian Feng
Yongjian Feng 2021-11-20
There must be similar thing in your course material. Or try this?
taojian li
taojian li 2021-11-20
thank you I already know how to solve it

请先登录,再进行评论。

更多回答(1 个)

James Tursa
James Tursa 2021-11-20
编辑:James Tursa 2021-11-20
Your code does not have enough states. You have a 2nd order ODE (the highest derivative present is 2), so the state vector needs to be two elements, not one element as you have it. You will need to carry both y and y' at each step. To keep with your outline, let's make the state a column vector, and then have the result in a matrix where the columns are the states at each time point. I.e., y(1,i) is the y at time x(i), and y(2,i) is the y' at time x(i). Then take your code and everywhere you see y you need to replace it with a column vector. E.g.,
h = 0.01;
x = 0:h:10;
y = zeros(2,numel(x)); % y is a matrix composed of 2-element column vector states
y(:,1) = [1;yprime_initial]; % the first column is the initial state for y and y'
n = numel(x); % changed argument to x
for i = 1:n-1
dy = [ y' at time x(i); y'' at time x(i) ]; % A 2-element column vector, you need to fill this in
y(:,i+1) = y(:,i) + dy*h; % changed the y to column vectors
end
I modified almost everything in your code to account for the 2-element column vector states. I even included the outline of what the 2-element column vector dy needs to be in terms of y' and y''. You simply need to fill in the values for these. It will be a function of the current column vector state y(:,i) and time x(i). Give it a shot and let us know if you have problems. I have arbitrarily given the inital y' value as yprime_initial, but you should change this to the actual value.

类别

Help CenterFile Exchange 中查找有关 Programming 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by