Fractional order root locus

Version 1.1.0.0 (2,02 ko) par Zhuo Li
This function generates the root locus (RL) plot of a fractional order transfer function.
613 téléchargements
Mise à jour 10 avr. 2015

Afficher la licence

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)

Citation pour cette source

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

Compatibilité avec les versions de MATLAB
Créé avec R2014a
Compatible avec toutes les versions
Plateformes compatibles
Windows macOS Linux
Catégories
En savoir plus sur Classical Control Design dans Help Center et MATLAB Answers

Community Treasure Hunt

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

Start Hunting!
Version Publié le Notes de version
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