blob: 82fa6210be7dca4047d9c12e371a4a7a529c974b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
function VirtualCLK0 () {
var model = scicos_model();
model.sim = new ScilabString(["vrtclk0"]);
model.evtin = new ScilabDouble([1]);
model.opar=list();
model.ipar = new ScilabDouble();
model.blocktype = new ScilabString(["d"]);
model.firing = new ScilabDouble([-1]);
model.dep_ut = new ScilabBoolean([false,false]);
var exprs = [];
this.x=new standard_define(new ScilabDouble([2,2]),model,exprs," ");
return new BasicBlock(this.x)
}
|