Skip to content
Snippets Groups Projects
Undisturbed_movement.cpp 318 B
Newer Older
#include <iostream>
#include <iomanip>
#include "orbit.h"

int main()
{   
    Orbit m_orbit{ elements_orbit{26555.986747, 0.01203, 106.99664, 56.60239, 53.27773, 405504} };
    std::cout << "Hello world" <<  m_orbit << std::endl;
    for (int i = 0; i < 10000; i++)
        m_orbit.modulation();
    return 0;
}