GeneticSharp in the Wild: AeroVision - Aircraft Trajectories Optimization and Visualization

I decided to start a series of posts about some outstanding scientific papers and projects using GeneticSharp.

For this first post the chosen one is the AeroVision - Aircraft Trajectories Optimization and Visualization.

Introduction

The main motivation of the authors about the AeroVision was: build program that represents an innovative and efficient way to minimize and visualize aircraft noise along simulated and real flight routes. There are no existing programs that offer both optimization and visualization of aircraft noise.

Usage

To optimize aircraft trajectories using a genetic algorithm, AeroVision uses the GeneticSharp library, which is a fast, extensible, multi-platform and multithreading C# Genetic Algorithm library that simplifies the development of applications using Genetic Algorithms.

The library supports a number of selection methods, of which the most basic option (elite selection) is recommended. The mutation method used by AeroVision is crossover, which is a commonly used setting. The stop criteria can be a fixed number of generations, which can be specified by the user.

Additionally, the user is free to define the number of chromosomes that are part of one population. The default population size is 70 chromosomes, each representing a possible trajectory in our case.

Results

For trajectory optimization we were able to achieve a performance improvement of 84% by using a multi-core and multi-threaded genetic algorithm based on crossover operations. This led to a major improvement on the workflow management and automation

Authors

Elvan Kula and Hans Schouten wrote the paper as requirements for their degree of Bachelor of Science in Computer Science. The Dr. Ir. N. Dintzner (TU Delft, supervisor), Dr. ir. S. Hartjes (Client) and Dr. ir. M. Larson (Bachelor Project Coordinator) are the thesis committee.

Further reading

You can access the full paper directly on TUDelft library repository.

Loading comments...
Tutorials

Articles

Labs