Message Boards Message Boards

Considerations for numerically solving a set of differential equation

Posted 3 days ago

Hi Guys

Please refer the below differential equations which I have derived. Each equation presents acceleration terms of the other equation. Would one go about solving such a system? Set of differential equations

POSTED BY: Mishal Mohanlal

Here's a similar, simplified system:

ode = {x''[t] == y'[t]^2 Sin[y[t]] - y''[t] Cos[y[t]] - x'[t],
   y''[t] == -1/2 x''[t] Cos[y[t]] - y[t] - Sin[y[t]] - y'[t]};
ics = {x[0] == 2, x'[0] == 1, y[0] == 1, y'[0] == 2};
NDSolve[{ode, ics}, {x, y}, {t, 0, 10}]
POSTED BY: Michael Rogers
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard

Group Abstract Group Abstract