Erivelton's GSoC 2018

Welcome to Octave and Google Summer of Code

April 23, 2018 — under ,

This summer I got accepeted to the Summer Google of Code under the GNU Octave. This program, admistred by Google, facilates the emergence of students to the Open Source Community. My primary goal to participate in the GSoC is to build a long term relationship with the open source community. I want to take it serious and get involved. I have been using a lot of open source tools, and now I fell it is time to contribute for it.

For those who does not know GNU Octave is a high-level programming language for scientific and numerical computations which uses the m-script language compatible with MATLAB. The core of Octave is implemented using both C++ and the the well-known m-script language. Both Matlab and Octave provide many similar packages to the end-user (also known as toolboxes in matlab). One of the missing functionalities in the Octave controls package is the Control System Designer tool . This tool, also called sisotool, is used in Control Systems, Linear Systems, and Modern Control classes, as well as for hobbyist and industrial controller design. This tool is used in controller design to allow exploration of linear controllers through interactive tools. This tool allows the user to interactively modify a controller and apply it to the plant in a variety of closed-loop configurations/topologies. The interactivity allow the user to add & move poles and zeros in the root locus diagram, and implement common controller architectures like PD, PID, and Lead & Lag controllers, as well as assess performance through common diagrams such at Bode plots, Nyquist plots, root locus plots, and step response plots.

Therefore, the goal of my project is to create an Interactive Tool for Single Input Single Output (SISO) Linear Control System Design to provide a much needed missing feature in the Octave controls package for the design and analysis of SISO system controllers. Here you can access the link of my proposal (https://summerofcode.withgoogle.com/projects/#5842927301951488). In this meantime, I will be supervised by my mentors: Douglas Stewart and John Swensen.

Review currently sisotool (MATLAB)

During this first week, I was advised to watch the following videos which briefly explain the functionalities of the currently Matlab version:

Since I haven't use the sisotool for while, I have been exploring this tool this past week.

Here are some basic notes. In order to run the Control System Designer, we can simply run sisotool or in case we have the plant, we use this as an attribute for the sistool function; for example:

s = tf('s');
plant = (s + 7)/(s*(s + 5)*(s + 15)*(s + 20));
sisotool(plant)
alternate text

The Matlab R2016 and newer versions have presented a new concept for the sisotool. In this new window format, all the plots are constrained in a single window. The user can choose the plots it can be displayed and there are several interactive seetings which helps to design a controller. So, we come up with that creating something identical for this tool will ne necessary more than m script languages. Therefore, the main goal of the project will be developing the "back-end" capable to perform the same tasks with the current version and for the "front-end", it will be used the UI Elements that is more similar to the older version of sisotool.

So far, it was identified some functionalities which will be presented in this version:

Timeline

I am still really busy with school and research work due the semester still is not over. However, I still have ome more week and I will have much more time to spent in this project. So, for this week I will presented a timeline which I extracted from my proposal, but probably it will be adapted for the new disussion I have this community bonding period.

Community Bonding Period (23 April - 13 May)

I will explore the control package created by Lukas Reichlin and maintainers Alexander Wilms and Doug Stewart. My goal is to become comfortable with the structure of the following codes:

Phase 1 Initial Phase of Coding - Week 1 (14 May - 20 May)

Week 2 (21 May - 27 May)

Week 3 (28 May - 3 June)

Week 4 & 5 (4 June - 17 June)

Phase 2 - Week 6 (18 June - 24 June)

Week 7 & 8(25 June - 8 July)

Week 9 (9 July - 15 July)

Phase 3 - *Week 10 & 11 (16 July - 29 July)

Week 12 (30 July - 5 August)

Week 13 (6 August - 14 August)

comments powered by Disqus

Theme created by Jim Crist. Licensed under Creative Commons.

Find me on Twitter, GitHub, old personal webpage, or shoot me an email.