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
|
/* autogenerated from "macros/Linear/TIME_DELAY.sci" */
function TIME_DELAY() {
TIME_DELAY.prototype.define = function TIME_DELAY() {
nin = 1;
T = 1;
init = 0;
N = 1024;
model = scicos_model();
model.sim = list("time_delay",4);
model.in1 = [nin];
model.out = nin;
model.rpar = [T,init];
model.ipar = N;
model.blocktype = "x";
model.dep_ut = [false,true];
exprs = [[string(T)],[string(init)],[string(N)]];
gr_i = [];
this.x = standard_define([3.5,2],model,exprs,gr_i);
}
TIME_DELAY.prototype.details = function TIME_DELAY() {
return this.x;
}
TIME_DELAY.prototype.get = function TIME_DELAY() {
}
TIME_DELAY.prototype.set = function TIME_DELAY() {
this.x = arg1;
graphics = arg1.graphics;
exprs = graphics.exprs;
model = arg1.model;
nin = model.in1[1-1];
while (true) {
[ok,T,init,N,exprs] = scicos_getvalue("Set delay parameters",[["Delay"],["initial input"],["Buffer size"]],list("vec",1,"vec",1,"vec",1),exprs);
if (!ok) {
break;
}
if (N<2) {
message("Buffer must be larger than 2");
ok = false;
}
if (T<=0) {
message("Delay must be positive");
ok = false;
}
if (ok) {
[model,graphics,ok] = check_io(model,graphics,[-1],-1,[],[]);
}
if (ok) {
graphics.exprs = exprs;
model.rpar = [[T],[init]];
model.ipar = N;
model.dep_ut = [false,true];
this.x.graphics = graphics;
this.x.model = model;
break;
}
}
}
}
|