Good afternoon,
I was wondering if I'm making these calculations right regarding the computation of the semi-major axis a in a elliptical orbit.
If the body is at a distance of R and has a velocity V, then a will be:
But supose that I use a different V', so that V'^2 - V^2 = error
I'll have then:
I've made a simple test, with the Moon's orbit, and placed an error of about 15 meters. Suprisely I've obtained an a value of about 5400 meters of diference between the 2 semi-major axis calculated.
Can this be right?
Regards,
JKepler
I was wondering if I'm making these calculations right regarding the computation of the semi-major axis a in a elliptical orbit.
If the body is at a distance of R and has a velocity V, then a will be:
Code:
a = 1 / (2 / R - V^2 / mu)
But supose that I use a different V', so that V'^2 - V^2 = error
I'll have then:
Code:
a = 1 / (2 / R - V^2 / mu - error / mu)
I've made a simple test, with the Moon's orbit, and placed an error of about 15 meters. Suprisely I've obtained an a value of about 5400 meters of diference between the 2 semi-major axis calculated.
Can this be right?
Regards,
JKepler