Introducing
Your new presentation assistant.
Refine, enhance, and tailor your content, source relevant images, and edit visuals quicker than ever before.
Trending searches
The number of UAV we see in the sky would keep on increasing with time, creating a need for a system for the management of the flow of air traffic of unmanned vehicles, named - UAV Traffic Management System or the UTM.
The purpose of the thesis is to design a back-end system for the UTMS. Here we work on the trajectory optimization problem to provide with the best possible path avoiding inter vehicular collisions as well as crossing over geo-fence zones
The trajectory planning problem is solved as an optimization problem.
Here we use the basic equations of motion to calculate the position , velocity and acceleration at any discrete time step.
v= u + (f/m)t
s= ut + 0.5(f/m)t^2
where f is the body force and m is the body mass.
We have also applied an upper limit on the velocity , acceleration and jerk (to ensure a smooth and practical trajectory) of the body.
Collision with geofence
Inter vehicular collsions
Inter vehicle as well as collisions with the geofence zones need to be avoided.
The adjoining equations represent the mathematical relations for collisions avoidance. Here M and R are large numbers while t and c are binary coefficients
We also need to put certain constraints on the final positions such that the trajectory we have obtained does not keep repeating itself, i.e., it reaches the final point in the minimum time possible.
Firstly the minimum time trajectory problem is generated by summing the time steps taken by each vehicle.
Implementation:
We obtain the optimized trajectories of the given UAVs as a result of the back end system.
The state vectors are obtained as separate position , velocity and acceleration matrix in .csv files. The columns represent x y and z coordinates of respective vectors and all UAVs while the rows represent the time steps.
Position file
The system developed uses MILP formulation for modelling collision avoidance both inter vehicle as well as vehicle geo-fence, modelling vehicle dynamics as linear constraints formulation and since time optimal trajectories are generated the system in a nutshell is optimization system which minimizes of total time taken by all the vehicles to reach their destination from their starting position is done.
Currently, the system works on the assumption that we know the number and specifications of the UAVs and the geofences much in advance. But we can have a scenario where a UAV enters the while the real time flying of the UAVs is taking place. For some such situations, we need to have a real time system.
Always assuming rectangular geofences and applying MILP can lead to wastage of a lot of air space, which is of great importance when the number of UAVs increase, hence we need to find a way to deal with polygonal geofences.
A more sophisticated set of verification tests can be applied on the results obtained through MILP , so that we are more confident that the results obtained actually describe the most optimized trajectories.