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
|
/* autogenerated from "macros/Linear/DLR_f.sci" */
function DLR_f() {
DLR_f.prototype.define = function DLR_f() {
x0 = 0;
A = -1;
B = 1;
C = 1;
D = 0;
exprs = [["1"],["1+z"]];
this.model = scicos_model();
this.model.sim = new ScilabString(["dsslti"]);
this.model.in1 = new ScilabDouble([1]);
this.model.out = new ScilabDouble([1]);
this.model.evtin = new ScilabDouble([1]);
this.model.dstate = x0.slice();
this.model.rpar = new ScilabDouble([A.slice()],[B.slice()],[C.slice()],[D.slice()]);
this.model.blocktype = new ScilabString(["d"]);
this.model.dep_ut = [false,false];
gr_i = [];
this.x = standard_define([2.5,2.5],this.model,exprs,gr_i);
return new BasicBlock(this.x);
}
DLR_f.prototype.details = function DLR_f() {
return this.x;
}
DLR_f.prototype.get = function DLR_f() {
var options = {
num:["Numerator (z)",this.num],
den:["Denominator (z)",this.den],
}
return options;
}
DLR_f.prototype.set = function DLR_f() {
this.num = arguments[0]["num"]
this.den = arguments[0]["den"]
this.x = arg1;
graphics = arg1.graphics;
exprs = graphics.exprs;
this.model = arg1.model;
x0 = this.model.dstate;
ns = prod(size(x0));
PREVAR_scicos_context = PREVAR_scicos_context;
PREVAR_scicos_context.z = %z;
while (true) {
[ok,this.num,this.den,exprs] = scicos_getvalue("Set discrete SISO transfer parameters",["Numerator (z)","Denominator (z)"],list("pol",1,"pol",1),exprs);
if (!ok) {
break;
}
if (degree(this.num)>degree(this.den)) {
message("Transfer must be proper");
ok = false;
}
if (ok) {
H = cont_frm(this.num,this.den);
[A,B,C,D] = H.slice(2-1,5);
graphics.exprs = exprs;
[ns1,ns1] = size(A);
if (ns1<=ns) {
x0 = x0.slice(1-1,ns1);
} else {
x0[ns1-1][1-1] = 0;
}
rpar = [[A.slice()],[B.slice()],[C.slice()],[D.slice()]];
this.model.dstate = x0;
this.model.rpar = new ScilabDouble(rpar);
if (norm(D,1)!=0) {
mmm = [true,false];
} else {
mmm = [false,false];
}
if (or(this.model.dep_ut!=mmm)) {
this.model.dep_ut = mmm;
}
this.x.graphics = graphics;
this.x.model = this.model;
break;
}
}
this.x.model.firing = [];
return new BasicBlock(this.x);
}
}
|