RTGA - Real Time Genetic Algorithm Project

Welcome to the RTGA project page
Thank you for your visit. Please explore this page's sections:
  Section Description  
    Introduction Provides basic information on this project  
    Input data Data which must be provided to the genetic algorithm  
    Actions What users may do  
    Output data The results displayed by the algorithm  
    Source code Download the source code as a Microsoft Visual Studio .NET 2003 solution packed in a .zip archive  
Introduction
Real Time Genetic Algorithm project has been developed by Mihai Virtosu, virtosumihai_at_yahoo_dot_com, student at the Politehnica University of Bucharest. It combines research from the areas of Control Theory, Evolutionary Computing, Genetic Algorithms as well as Software Engineering. It was build as an ASP.NET web application, which can be accessed anywhere from the Internet at this address: http://rtga.crinsoft.ro

This project's purpose is to fine tune PID controllers' parameters (Kr, Td, and Ti) and uses genetic algoritms as a method of optimization. We optimize the overshot and the settling time in such proportion dictated by the user.

As a technical note, the application that wrappes the genetic algorithm is written in C#.NET and ASP.NET, with the algorithm computation back end written in Matlab R13.

Keywords: Control Theory, Evolutionary Computing, Genetic Algorithms, Software Engineering.

Please click here to access the RTGA application now. It is highly recommended, if you use the 1024 X 728 screen resolution or less, that you view the page in Full Screen mode (you can enter Full Screen mode in Microsoft Internet Explorer by pressing F11. You can exit Full Screen Mode by pressing F11 again.)

Back to Top
Input data
The input data area is displayed here:

Please click here to access the RTGA application now. It is highly recommended, if you use the 1024 X 728 screen resolution or less, that you view the page in Full Screen mode (you can enter Full Screen mode in Microsoft Internet Explorer by pressing F11. You can exit Full Screen Mode by pressing F11 again.)

Back to Top
User actions
Users can interact by pressing these two buttons:

Display the response

Pressing this button will compute and display the step response for the system composed of the process and the current controller, without computing any controller.

This action is useful when users want to see the effect that perturbations have upon the system. By slightly changing one of the time constants (for example, 8 becomes 9), you can press this button and visualize the effect this perturbation had on the system. Typically, it will result in an increased overhead or settling time.

Please note that when the page is displayed for the first time this button is disabled because no controller has been computed yet.

Compute a new controller

Pressing this button will compute a new controller and display the step response of the closed loop system.

Please click here to access the RTGA application now. It is highly recommended, if you use the 1024 X 728 screen resolution or less, that you view the page in Full Screen mode (you can enter Full Screen mode in Microsoft Internet Explorer by pressing F11. You can exit Full Screen Mode by pressing F11 again.)

Back to Top
Output data
The step response for the closed loop system is displayed in the right pane. In addition to that, in the left lower pane are displayed some of the parameters for the PID controller and step response.

Kr, Ti, and Td are the PID controller's computed parameters.

The settling time and overshot are the parameters for the step response of the closed loop. A variation from the previous parameters is also displayed in red, beneath each value.

Please click here to access the RTGA application now. It is highly recommended, if you use the 1024 X 728 screen resolution or less, that you view the page in Full Screen mode (you can enter Full Screen mode in Microsoft Internet Explorer by pressing F11. You can exit Full Screen Mode by pressing F11 again.)

Back to Top