Posts by Terance
- 19.03.2008, 07:34
- Forum: Petit Bistro Entropy
- Topic: Runge-Cute Method for solving system of differentional equat
- Replies: 8
- Views: 6460
Re: Runge-Cute Method for solving system of differentional equat
But my question is still alive ))))Help me to write some code to solve this system
- 18.03.2008, 11:50
- Forum: Petit Bistro Entropy
- Topic: Runge-Cute Method for solving system of differentional equat
- Replies: 8
- Views: 6460
Re: Runge-Cute Method for solving system of differentional equat
t00fri wrote:Just a little math background (can't hurt, can it?):
These equations are called differential equations
and the method you were referring to is by two gentlemen, named
Runge-Kutta
"Runge-Cute" sounds cute, I must admit, yet...
F.
You're right )))))))my english isnt so good/
- 17.03.2008, 19:02
- Forum: Petit Bistro Entropy
- Topic: Runge-Cute Method for solving system of differentional equat
- Replies: 8
- Views: 6460
Runge-Cute Method for solving system of differentional equat
Would you be so kind to change algorithm for solving this system d2_x/dt_2=-GMx/(x^2+y^2)^(3/2) d2_y/dy_2=-GMy/(x^2+y^2)^(3/2) algorithm name is Runge-Cute Method #include <stdio.h> #include <stdafx.h> #include <math.h> #include <iostream> using namespace std; double f(int i,double x,double y[4]){ s...