Solving Nonlinear system of differential equations using Matlab

1 visualización (últimos 30 días)
ash
ash el 22 de Jun. de 2015
Comentada: Torsten el 24 de Jun. de 2015
How can i solve this system,
u''=(w'^2)'
w''''=(u'w'+w'^3)'
I have a problem writing the following expressions (w'^2)' and (w'^3)' in the standard form of Matlab ode solvers
Thanks
  3 comentarios
Torsten
Torsten el 24 de Jun. de 2015
Any questions about my answer ?
Best wishes
Torsten.
Walter Roberson
Walter Roberson el 24 de Jun. de 2015
Torsten, somehow your answer got marked as potential spam. I do not know if it would have been visible to non-moderators.

Iniciar sesión para comentar.

Respuesta aceptada

Torsten
Torsten el 22 de Jun. de 2015
u''=2w'*w''
w''''=u''*w'+u'*w''+3w'^2*w''=5w'^2'w''+u'*w''

->

u1'=u2
w1'=w2
w2'=w3
w3'=w4
u2'=2*w2*w3
w4'=5*w2'^2*w3+u2*w3

Here,

u1=u, u2=u', w1=w, w2=w', w3=w'', w4=w'''.

Best wishes

Torsten.

  2 comentarios
ash
ash el 24 de Jun. de 2015
oh ... Thanks a lot, I don't know how I missed that :)
Regards Ashraf
Torsten
Torsten el 24 de Jun. de 2015
Should read
w4'=5*w2^2*w3+u2*w3
instead of
w4'=5*w2'^2*w3+u2*w3
Best wishes
Torsten.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Programming en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by