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
|
/* autogenerated from "macros/Events/MCLOCK_f.sci" */
function MCLOCK_f() {
MCLOCK_f.prototype.define = function MCLOCK_f() {
var nn = 2;
var dt = 0.1;
var exprs = [[string(dt)],[string(nn)]];
var mfclck = MFCLCK_f("define");
mfclck.graphics.orig = [334,199];
mfclck.graphics.sz = [40,40];
mfclck.graphics.flip = true;
mfclck.graphics.exprs = exprs;
mfclck.graphics.pein = 12;
mfclck.graphics.peout = [[4],[3]];
mfclck.model.rpar = 0.1;
mfclck.model.ipar = nn;
mfclck.model.firing = [-1,0];
var clksom = CLKSOM_f("define");
clksom.graphics.orig = [457,161];
clksom.graphics.sz = [16.666667,16.666667];
clksom.graphics.flip = true;
clksom.graphics.exprs = [["0.1"],["0.1"]];
clksom.graphics.pein = [[4],[9],[0]];
clksom.graphics.peout = 5;
var output_port1 = CLKOUT_f("define");
output_port1.graphics.orig = [509,261];
output_port1.graphics.sz = [20,20];
output_port1.graphics.flip = true;
output_port1.graphics.exprs = "1";
output_port1.graphics.pein = 10;
output_port1.model.ipar = 1;
var output_port2 = CLKOUT_f("define");
output_port2.graphics.orig = [509,142];
output_port2.graphics.sz = [20,20];
output_port2.graphics.flip = true;
output_port2.graphics.exprs = "2";
output_port2.graphics.pein = 13;
output_port2.model.ipar = 2;
var split1 = CLKSPLIT_f("define");
split1.graphics.orig = [[411.92504],[169.33333]];
split1.graphics.pein = 3;
split1.graphics.peout = [[9],[10]];
var split2 = CLKSPLIT_f("define");
split2.graphics.orig = [[482.45315],[169.33333]];
split2.graphics.pein = 5;
split2.graphics.peout = [[12],[13]];
var gr_i = new ScilabString(["xstringb(orig(1),orig(2),\"MCLOCK_f\",sz(1),sz(2));"]);
var diagram = scicos_diagram();
diagram.objs[1-1] = mfclck;
diagram.objs[2-1] = clksom;
diagram.objs[3-1] = scicos_link(xx=[[360.7],[360.7],[411.9]],yy=[[193.3],[169.3],[169.3]],ct=[10,-1],from=[1,2],to=[8,1]);
diagram.objs[4-1] = scicos_link(xx=[[347.3],[347.3],[461.8],[461.8]],yy=[[193.3],[155.5],[155.5],[161]],ct=[10,-1],from=[1,1],to=[2,1]);
diagram.objs[5-1] = scicos_link(xx=[[468.9],[482.5]],yy=[[169.3],[169.3]],ct=[10,-1],from=[2,1],to=[11,1]);
diagram.objs[6-1] = output_port1;
diagram.objs[7-1] = output_port2;
diagram.objs[8-1] = split1;
diagram.objs[9-1] = scicos_link(xx=[[411.9],[457]],yy=[[169.3],[169.3]],ct=[10,-1],from=[8,1],to=[2,2]);
diagram.objs[10-1] = scicos_link(xx=[[411.9],[411.9],[509]],yy=[[169.3],[271],[271]],ct=[10,-1],from=[8,2],to=[6,1]);
diagram.objs[11-1] = split2;
diagram.objs[12-1] = scicos_link(xx=[[482.5],[489.6],[489.6],[354],[354]],yy=[[169.3],[169.3],[338.3],[338.3],[244.7]],ct=[10,-1],from=[11,1],to=[1,1]);
diagram.objs[13-1] = scicos_link(xx=[[482.4],[482.4],[509]],yy=[[169.3],[152],[152]],ct=[10,-1],from=[11,2],to=[7,1]);
this.x = scicos_block();
this.x.gui = "MCLOCK_f";
this.x.graphics.sz = [3,2];
this.x.graphics.gr_i = gr_i;
this.x.model.sim = "csuper";
this.x.model.evtout = [[1],[1]];
this.x.model.blocktype = "h";
this.x.model.rpar = diagram;
this.x.graphics.peout = [[0],[0]];
return new BasicBlock(this.x);
}
MCLOCK_f.prototype.details = function MCLOCK_f() {
return this.x;
}
MCLOCK_f.prototype.get = function MCLOCK_f() {
alert("parameters cannot be modified");
}
MCLOCK_f.prototype.set = function MCLOCK_f() {
for (i=1;i<=length(this.model.rpar.objs);i+=1) {
var o = this.model.rpar.objs[i-1];
if (typeof(o)=="Block"&&o.gui=="MFCLCK_f") {
var path = i;
break;
}
}
var newpar = list();
var spath = list("model","rpar","objs",path);
var xx = getObjectFromKeyList(this, spath);
execstr("xxn="+xx.gui+"(\'set\',xx)");
if (or(this.xxn!=xx)) {
getObjectFromKeyList(this, spath) = this.xxn;
newpar[size(newpar)+1-1] = path;
}
var y = 0;
var typ = newpar;
return new BasicBlock(this.x);
}
MCLOCK_f.prototype.get_popup_title = function MCLOCK_f() {
return;
}
}
|