summaryrefslogtreecommitdiff
path: root/js/Electrical/MOTOR.js
blob: 6ab8def6daf83f9f70f7b6310cffb20ef06ffec5 (plain)
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
/* autogenerated from "macros/Electrical/MOTOR.sci" */
function MOTOR() {
    MOTOR.prototype.define = function MOTOR() {
        this.model = scicos_model();
        this.model.out = new ScilabDouble([1],[1]);
        this.model.in = new ScilabDouble([1]);
        this.model.sim = new ScilabString(["motor"]);
        this.model.blocktype = new ScilabString(["c"]);
        this.model.dep_ut = new ScilabBoolean([true,false]);
        this.gr_i = new ScilabString(["xstringb(orig(1),orig(2),\"MOTOR\",sz(1),sz(2));"]);
        this.exprs = "";
        this.x = new standard_define(new ScilabDouble([2,2]),this.model,this.exprs,this.gr_i);
        this.x.graphics.out_implicit = [["I"],["I"]];
        this.x.graphics.in_implicit = ["I"];
        return new BasicBlock(this.x);
    }
    MOTOR.prototype.details = function MOTOR() {
        return this.x;
    }
    MOTOR.prototype.get = function MOTOR() {
        var options = {
        }
        return options;
    }
    MOTOR.prototype.set = function MOTOR() {
        return new BasicBlock(this.x);
    }
}