JtPB Posted February 20, 2015 Share Posted February 20, 2015 let O(eccentricity, semimajor, inclination, AN, AoP, MA) be a function that returns an orbit while those parameters are the six elements of it.let N(v(prograde, radial, normal)) be a function that returns a manuever node according to a given manuever vector.the product (N,O) returns the new trajectory of the spacecraft if the given node is activated at the given location in the given orbit.how do i know what the new trajectory is by activating the product? Link to comment Share on other sites More sharing options...
Bill Phil Posted February 20, 2015 Share Posted February 20, 2015 N(O's expression)I think... Link to comment Share on other sites More sharing options...
N_las Posted February 20, 2015 Share Posted February 20, 2015 easiest would be to calculate x,y,z,vx,vy,vz out of the current Orbit O. Then calculate delta_vx,delta_vy,delta_vz out of your manuever NThen just add the delta_v values to the v values. Then calculate the new orbit O_new out of x,y,z,vx_new,vy_new,vz_new Link to comment Share on other sites More sharing options...
K^2 Posted February 20, 2015 Share Posted February 20, 2015 N_las is absolutely right. You need O and t to get coordinates/velocity, which are much easier to update. You can go directly from O to O', but the math for it is insane. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now