summaryrefslogtreecommitdiffstats
path: root/pbhtest.m
diff options
context:
space:
mode:
authorNao Pross <np@0hm.ch>2024-05-28 23:57:28 +0200
committerNao Pross <np@0hm.ch>2024-05-28 23:57:28 +0200
commit031c72b0c4419c5b1147fe60f727ccc4102d17fb (patch)
tree89dade9d0d8236500f25f1429c2d9845ec38d415 /pbhtest.m
parentAdd more checks, update DK iteration (diff)
downloaduav-031c72b0c4419c5b1147fe60f727ccc4102d17fb.tar.gz
uav-031c72b0c4419c5b1147fe60f727ccc4102d17fb.zip
Fix assumption checks in uav_model
Diffstat (limited to '')
-rw-r--r--pbhtest.m58
1 files changed, 58 insertions, 0 deletions
diff --git a/pbhtest.m b/pbhtest.m
new file mode 100644
index 0000000..f56aa21
--- /dev/null
+++ b/pbhtest.m
@@ -0,0 +1,58 @@
+% Do A PBH test on system. Given SYS returns:
+%
+% - Nr. of states
+% - Nr. of stable states
+% - Nr. of controllable states
+% - Nr. of unstabilizable states
+% - Nr. of observable states
+% - Nr. of undetectable states
+
+function [nx, nsta, nctrb, nustab, nobsv, nudetb] = pbhtest(sys)
+
+nx = length(sys.A);
+eigvals = eig(sys.A);
+
+% Count number of stable states
+nsta = 0;
+for i = 1:nx
+ if real(eigvals(i)) < 0
+ nsta = nsta + 1;
+ end
+end
+
+% Check system controllability / stabilizability
+Wc = ctrb(sys);
+nctrb = rank(Wc);
+if nctrb < nx
+ % Is the system at least stabilizable?
+ nustab = 0;
+ for i = 1:nx
+ if real(eigvals(i)) >= 0
+ % PBH test
+ W = [(sys.A - eigvals(i) * eye(nx)), sys.B];
+ if rank(W) < nx
+ nustab = nustab + 1;
+ end
+ end
+ end
+end
+
+% Check system observability / detectability
+Wo = obsv(sys);
+nobsv = rank(Wo);
+if nobsv < nx
+ % is the system at least detectable?
+ nudetb = 0;
+ for i = 1:nx
+ if real(eigvals(i)) >= 0
+ % PBH test
+ W = [sys.C; (sys.A - eigvals(i) * eye(nx))];
+ if rank(W) < nx
+ nudetb = nudetb + 1;
+ end
+ end
+ end
+end
+
+end
+