File: trfmod.sci

package info (click to toggle)
scilab 5.2.2-9
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 334,832 kB
  • ctags: 52,586
  • sloc: xml: 526,945; ansic: 223,590; fortran: 163,080; java: 56,934; cpp: 33,840; tcl: 27,936; sh: 20,397; makefile: 9,908; ml: 9,451; perl: 1,323; cs: 614; lisp: 30
file content (177 lines) | stat: -rw-r--r-- 4,390 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
// Copyright (C) INRIA - 
// 
// This file must be used under the terms of the CeCILL.
// This source file is licensed as described in the file COPYING, which
// you should have received as part of this distribution.  The terms
// are also available at    
// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt

function h=trfmod(h,job)
// hm=trfmod(h [,job])
// To visualize the pole-zero structure of a SISO transfer function h 
//     job='p' : visualization of polynomials (default)
//     job='f' : visualization of natural frequencies and damping
//
//!
  select typeof(h)
  case 'rational' then
    if size(h('num'))<>[1 1] then
      error(msprintf(gettext("%s: Wrong size for input argument #%d: Single input, single output system expected.\n"),"trfmod",1))
    end
    flag='r'
  case 'state-space' then
    if size(h('D'))<>[1 1] then
      error(msprintf(gettext("%s: Wrong size for input argument #%d: Single input, single output system expected.\n"),"trfmod",1))
    end
    flag='lss'
    den=real(poly(h('A'),'s'))
    na=degree(den)
    c=h(4)
    [m,i]=maxi(abs(c))
    ci=c(i)
    t=eye(h(2))*ci;t(i,:)=[-c(1:i-1), 1, -c(i+1:na)]
    al=h(2)*t;
    t=eye(h(2))/ci;t(i,:)=[c(1:i-1)/ci, 1, c(i+1:na)/ci]
    al=t*al;ai=al(:,i),
    b=t*h(3)
    al(:,i)=ai+b
    num=-(real(poly(al,'s'))-den)*ci
    h=syslin(h(7),num+h(5)*den,den);
  else
    error(msprintf(gettext("%s: Wrong type for input argument #%d: Linear state space or a transfer function expected.\n"),"trfmod",1))
  end
  
  
  //
  format('v',15)
  [lhs,rhs]=argn(0)
  if rhs==1 then job='p',end
  //
  if type(h('num'))==1 then h('num')=poly(h('num'),varn(h('den')),'c'),end
  if type(h('den'))==1 then h('den')=poly(h('den'),varn(h('num')),'c'),end
  
  var=varn(h('num')),nv=length(var);
  while part(var,nv)==' ' then nv=nv-1,end;var=part(var,1:nv);
  
  fnum=polfact(h('num'))
  fden=polfact(h('den'))
  g=coeff(fnum(1))/coeff(fden(1))
  nn=prod(size(fnum))
  nd=prod(size(fden))
  //
  num=[]
  for in=2:nn
    p=fnum(in)
    if job=='p' then
      num=[num;pol2str(p)]
    else
      if degree(p)==2 then
	p=coeff(p)
	omeg=sqrt(p(1))
	xsi=p(2)/(2*omeg)
	num=[num;string(omeg)+'    '+string(xsi)]
      else
	num=[num;string(-coeff(p,0))]
      end
    end
  end
  //
  den=[];
  for id=2:nd
    p=fden(id)
    if job=='p' then
      den=[den;pol2str(p)]
    else
      if degree(p)==2 then
	p=coeff(p)
	omeg=sqrt(p(1))
	xsi=p(2)/(2*omeg)
	den=[den;string(omeg)+'    '+string(xsi)]
      else
	den=[den;string(-coeff(p,0))]
      end
    end
  end
  
  txt=[_("Gain :");string(g);_("Numerator :");num;_("Denominator :");den]
  
  id=[]
  if job=='p' then
    tit=[gettext("Irreducible Factors of transfer function (click below)")]
  else
    tit=[gettext("Irreducible Factors of transfer function natural frequency and damping factor (click below)")]
  end
  while id==[] then
    t=x_dialog(tit,txt)
    id=find(t==_("Denominator :"))
  end
  txt=t;
  
  tgain=txt(2)
  tnum=txt(4:id-1)
  tden=txt(id+1:prod(size(txt)))
  execstr(var+'=poly(0,'''+var+''')')
  num=1
  for in=1:prod(size(tnum))
    txt=tnum(in)
    if length(txt)==0 then txt=' ',end
    if job=='p' then
      t=' ';
      for k=1:length(txt),
	tk=part(txt,k),
	if tk<>' ' then t=t+tk,end
      end
      f=1;if t<>' ' then f=evstr(t),end
    else
      if txt==part(' ',1:length(txt)) then
	f=1
      else
	f=evstr(txt)
	select prod(size(f))
	case 1 then
	  f=poly(f,var)
	case 2 then
	  f=poly([f(1)*f(1), 2*f(1)*f(2),1],var,'c')
	else 
	  error(msprintf(gettext("%s: Incorrect answer.\n"),"trfmod"))
	end
      end
    end
    num=num*f
  end
  //
  den=1
  for id=1:prod(size(tden))
    txt=tden(id);
    if length(txt)==0 then txt=' ',end
    if job=='p' then
      t=' ';
      for k=1:length(txt),
	tk=part(txt,k),
	if tk<>' ' then t=t+tk,end
      end
      f=1;if t<>' ' then f=evstr(t),end
    else
      if txt==part(' ',1:length(txt)) then
	f=1
      else
	f=evstr(txt)
	select prod(size(f))
	case 1 then
	  f=poly(f,var)
	case 2 then
	  f=poly([f(1)*f(1), 2*f(1)*f(2),1],var,'c')
	else 
	  error(msprintf(gettext("%s: Incorrect answer.\n"),"trfmod"))
	end
      end
    end
    den=den*f
  end
  x=evstr(tgain)/coeff(den,degree(den))
  h('num')=num*x
  h('den')=den/coeff(den,degree(den))
  format(10)
  if flag=='lss' then h=tf2ss(h),end
endfunction