Info

此问题已关闭。 请重新打开它进行编辑或回答。

Question about Second-order ODE.

1 次查看(过去 30 天)
Yusuke Nakamura
Yusuke Nakamura 2015-4-26
关闭: MATLAB Answer Bot 2021-8-20
Q. A mass-spring-damper system is to be modeled to determine behavior of the system. The damping is modeling using a non-linear damping term. The resulting differential equation is given by: x''+4*x'+2.5*x = 0
The mass is released from rest with a displacement of x(t=0) = +2. What is the velocity at t = 5?
My code is:
function dx = dx(t,x)
dx = [x(2); -2.5*x(1)-4*x(2)];
and
[t,x] = ode45(@dx,[0 5],[2 0],0.005);
x = x(end,2)
Then I got x(t=5) = -0.0423
The answer should be 0.213. How could I get this answer?
  1 个评论
Star Strider
Star Strider 2015-4-26
The problem could be in the absence of the ‘non-linear damping term’ because (unless I’m missing something) I see only a linear second-order differential equation.

回答(0 个)

此问题已关闭。

Community Treasure Hunt

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

Start Hunting!

Translated by