summaryrefslogtreecommitdiff
path: root/3432/CH7/EX7.10/Ex7_10.sce
blob: e4accd1017706944ef04f589552156b251cf230e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//Example 7.10
//Transformation of Thermal System from Control to Modal Form

xdel(winsid())//close all graphics Windows
clear;
clc;
//------------------------------------------------------------------
// State space matrices of the given system
Ac=[-7 1; -12 0];
Bc=[1;2];
Cc=[1 0];
Dc=0;
//------------------------------------------------------------------
// State space representation in modal canonical form
T=[4 -3;-1 1]
Am=T\Ac*T;
Bm=T\Bc;
Cm=Cc*T;
Dm=Dc;
disp(Dm,"Dm",Cm,"Cm", Bm,"Bm",Am,"Am","Thermal System in modal canonical form")
//------------------------------------------------------------------