Hello! I’ve write a program for orbit propagation and choose numerical integration method runge-kutta 4. I wrote only 2 perturbation effect: 2-body and atmospheric drag. Here is the code of main cycle:
Satellite sat(QVector3D(7000,0,500), QVector3D(0,9,0),0.0025, 3725.0);
QVector< QVector3D...