Fractional order root locus

Versión 1.1.0.0 (2,02 KB) por Zhuo Li
This function generates the root locus (RL) plot of a fractional order transfer function.
603 descargas
Actualizado 10 abr 2015

Ver licencia

This function generates the root locus (RL) plot of a fractional order
transfer function (for LTI systems). The first plot is the RL on the
s-plane, and the second plot is the RL on the 1st Riemann sheet of the s-plane
The input is the numerator and denominator polynomial coefficients,
and the fundamental order lambda (i.e. the lowest common denominator of
all the fractional orders on numerator and denominator).
The output returns the figure hundle.
E.g. for the transfer function below:
1.2s^{1.3}+1 1.2s^{13/10}+1
G(s) = ----------------------------- = ----------------------------------
0.8s^{2.6}+s^{1.3}+1 0.8s^{26/10}+s^{13/10}+1
lambda = 10;
num = [1.2 zeros(1,12) 1];
den = [0.8, zeros(1,12), 0.6, zeros(1, 12), 1];
The syntax for calling the function is: [fh1, fh2] = forlocus(num, den, lambda)

Citar como

Zhuo Li (2024). Fractional order root locus (https://www.mathworks.com/matlabcentral/fileexchange/50458-fractional-order-root-locus), MATLAB Central File Exchange. Recuperado .

Compatibilidad con la versión de MATLAB
Se creó con R2014a
Compatible con cualquier versión
Compatibilidad con las plataformas
Windows macOS Linux
Categorías
Más información sobre Classical Control Design en Help Center y MATLAB Answers.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Versión Publicado Notas de la versión
1.1.0.0

Corrected an error in the demo code
den = [0.8, zeros(1,22), 0.6, zeros(1, 22), 1]; changed to
den = [0.8, zeros(1,12), 0.6, zeros(1, 12), 1];

1.0.0.0