Message Boards Message Boards

Solve the differential equation by Runge Kutta method?

Posted 5 years ago

I need to solve the equation as follows by numerical methods such as Runge Kutta, Newton Raphson, ... Hope everyone help me. I thank everyone.

enter image description here

Attachments:
6 Replies

Your biggest problem is you have no precision in your equations. Your equations have terms that are order of 10^0 and terms that have order 10^15. You are using machine precision numbers that only have 16 decimal places. I suggest you re-derive your equations using a higher precision (i.e. 30) and you will probably be able to integrate them more easily.

Also, in understanding the physical source of your equations, does the size of your coefficients make sense? It is unusual to have such large numbers in a dynamical equation.

Regards,

Neil

POSTED BY: Neil Singer

As I stated, you need more precision. Note that I put 30 digits of precision on all machine precision numbers (numbers like 1 or Pi are infinite precision already). Also note that 5*^6 is the correct syntax for 5e6or 5x10^6 in MMA. Also 1.2`30 is 1.2 with 30 digits of precision. This works fine.

m = 1;
n = 1;
k1 = 2.5`30*^8; k2 = 5*^5;
h = 2*^-3;
b = 50*h;
a = b;
hp = 0;
Vo = 220;
q = 5000*Sin[1500*t];
px = 0;
py = 0;
Nxp = 0;
NxT = 0;
Nyp = 0;
NyT = 0;
A11 = 450288736;
A12 = 3.2402`30*^6;
A22 = 11028750;
A66 = 2.8731`30*^6;
B11 = 0;
B12 = 0;
B22 = 0;
B66 = 0;
D11 = 150.0962`30;
D12 = 1.0801`30;
D22 = 3.6762`30;
D66 = 0.9577`30;
ro1 = 2.4400`30;

You never defined epsilon so I did

epsilon = 1;

Your NDSolve now works fine.

Regards,

Neil

POSTED BY: Neil Singer

Thank you for your contribution. Hope you look at the origin of the equation

Attachments:

Welcome to Wolfram Community! Please make sure you know the rules: https://wolfr.am/READ-1ST

The rules explain how to format your code properly. If you do not format code, it may become corrupted and useless to other members. Please EDIT your post and make sure code blocks start on a new paragraph and look framed and colored like this.

int = Integrate[1/(x^3 - 1), x];
Map[Framed, int, Infinity]

enter image description here

POSTED BY: Moderation Team

Thank you for your help. Wish you a good day.

I'm having trouble plotting the Poincare Map with W [t], W '[t] . Hope you help.

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