I am looking to generate some 3D trajectory data for an aircraft simulation.
The idea is that the aircraft takes off at some location x
and continues to ascend at some average ascent velocity a_v
and angle a_theta
until it reaches a maximum altitude m_a
. The aircraft would then continue at its m_a
until it reaches a certain distance d_d
from its destination, at which point it will begin its descent at some angle d_theta
with an average descent velocity of d_v
. Finally, the aircraft lands at destination y
.
I would like the function to return a list of 3D points.
I am looking to implement this in either Python (preferred) or C#.
For illustration purposes:
Does anyone know how I can achieve this? Is there perhaps some open source project which does this? I have been looking for a while now, but have not found anything.