diff options
author | Adhitya Kamakshidasan | 2016-06-30 13:19:15 +0530 |
---|---|---|
committer | GitHub | 2016-06-30 13:19:15 +0530 |
commit | d57bd237edc2a550741afea78f2d2699bc6ea070 (patch) | |
tree | ae4924b95827b321da301a98290eb675867a8505 | |
parent | b484a832e402e84694ff588e92c1c939a53907cb (diff) | |
parent | 02da4bb4c62ff84a04b004cc27d8ec19a5b1179f (diff) | |
download | xcos-on-web-d57bd237edc2a550741afea78f2d2699bc6ea070.tar.gz xcos-on-web-d57bd237edc2a550741afea78f2d2699bc6ea070.tar.bz2 xcos-on-web-d57bd237edc2a550741afea78f2d2699bc6ea070.zip |
Merge pull request #88 from grenadier-amit/master
Implement DEADBAND block
-rw-r--r-- | data_structures_correct/DEADBAND.js | 27 | ||||
-rw-r--r-- | data_structures_correct/DERIV.js | 20 |
2 files changed, 47 insertions, 0 deletions
diff --git a/data_structures_correct/DEADBAND.js b/data_structures_correct/DEADBAND.js new file mode 100644 index 0000000..91303b3 --- /dev/null +++ b/data_structures_correct/DEADBAND.js @@ -0,0 +1,27 @@ +function DEADBAND() { + + DEADBAND.prototype.define = function DEADBAND() { + this.minp = -0.5; + this.maxp = 0.5; + this.rpar = new ScilabDouble([this.maxp], [this.minp]); + + var model = scicos_model(); + model.sim = list(new ScilabString(["deadband"]), new ScilabDouble([4])); + model.in = new ScilabDouble([1]); + model.nzcross = new ScilabDouble([2]); + model.nmode = new ScilabDouble([1]); + model.out = new ScilabDouble([1]); + model.rpar = this.rpar; + model.blocktype = new ScilabString(["c"]); + model.dep_ut = new ScilabBoolean([true, false]); + + var exprs = new ScilabString([this.maxp], [this.minp], [...getData(model.nmode).toString()]); + + var gr_i = new ScilabString(["xstringb(orig(1),orig(2),\"DEADBAND\",sz(1),sz(2));"]); + this.x = new standard_define(new ScilabDouble([2, 2]), model, exprs, gr_i); + return new BasicBlock(this.x); + } + DEADBAND.prototype.details = function DEADBAND() { + return this.x; + } +} diff --git a/data_structures_correct/DERIV.js b/data_structures_correct/DERIV.js new file mode 100644 index 0000000..6fc1796 --- /dev/null +++ b/data_structures_correct/DERIV.js @@ -0,0 +1,20 @@ +function DERIV() { + + DERIV.prototype.define = function DERIV() { + var model = scicos_model(); + model.sim = list(new ScilabString(["deriv"]), new ScilabDouble([4])); + model.in = new ScilabDouble([-1]); + model.out = new ScilabDouble([-1]); + model.blocktype = new ScilabString(["x"]); + model.dep_ut = new ScilabBoolean([true, false]); + + var exprs = new ScilabDouble(); + + var gr_i = new ScilabString(["xstringb(orig(1),orig(2),\"DERIV\",sz(1),sz(2));"]); + this.x = new standard_define(new ScilabDouble([2, 2]), model, exprs, gr_i); + return new BasicBlock(this.x); + } + DERIV.prototype.details = function DERIV() { + return this.x; + } +} |