A Python implementation of an algorithm for construction homogeneous approximations of nonlinear control systems. For description of the algorithm refer to ...
You can install the package using pip
pip install happy-control
The main part of the package is implemented in a single class called ControlSystem. This class describes a control system and its methods implement the algorithm of approximation of a given system.
from happy_control.approximation_tools import ControlSystem
Given a system you can initialize it the following way:
system = ControlSystem(a, b)
where a and b are corresponding vectors.
Note: the vectors must be composed out of sympy symbols or numbers. For example, consider a system:
Then the implementation using the package would be as follows:
import sympy as sym
from happy_control.approximation_tools import ControlSystem
x1, t = sym.symbols('x_{1} t')
a = sym.Matrix([0, -sym.Rational(1, 2)*x1**2 - 4*t*x1 - 3*t**2*x1, -x1**2 - 2*t*x1 - 3*t**2*x1])
b = sym.Matrix([-1, 0, 0])
system = ControlSystem(a, b)
Then you have 2 options: you can either approximate this system using nonlinear power moments series or using Fliess series
# to approximate using nonlinear power moments algebra
system.calc_approx_system()
# to approximate using Fliess algebra
system.calc_approx_system(fliess=True)
To generate the pdf file you need to do as follows:
# to generate pdf for systems which were appoximated using Fliess series
# add additional argument fliess=True
system.generate_pdf()
This will produce a pdf file named 'output.pdf' in your current working directory with all the necessary information of the system and its approximation.
To customize filename and directory where the file will be saved use additional parameters
# generate pdf in custom directory and custom filename (filename does
# not need to include .pdf extension, it will be added automatically, so just provide the name)
system.generate_pdf(path="path_to_directory", filename="custom_filename")