Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

Using ode45 to solve second order differential system

1 visualización (últimos 30 días)
konoha
konoha el 6 de Abr. de 2016
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
I am trying to solve a system m_1x'' + k_1x = 0; m_2x'' + k_2x = 0, with m_1,m_2,k_1,k_2 are some constants.
I read this post System of 2nd order DE, but I didn't follow how they do with their example, can someone show me how to do it? thanks

Respuestas (1)

Roger Stafford
Roger Stafford el 6 de Abr. de 2016
The same single function 'x' cannot in general satisfy two different differential equations, so you need to solve these equations separately.
It should be mentioned that you do not really need to use matlab's numerical ode functions on the particular equations you ask about. Their solution is well known in mathematics. If k/m is positive then x is of the form:
x = A*cos(sqrt(k/m)*t)+B*sin(sqrt(k/m)*t)
If k/m is negative it is
x = A*cosh(sqrt(-k/m)*t)+B*sinh(sqrt(-k/m)*t)
The constants A and B are determined by the two initial conditions which x must satisfy.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by