Clear Filters
Clear Filters

Info

This question is closed. Reopen it to edit or answer.

Question about Second-order ODE.

1 view (last 30 days)
Yusuke Nakamura
Yusuke Nakamura on 26 Apr 2015
Closed: MATLAB Answer Bot on 20 Aug 2021
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 Comment
Star Strider
Star Strider on 26 Apr 2015
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.

Answers (0)

This question is closed.

Community Treasure Hunt

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

Start Hunting!