From af8c2a7238eccca7680432b4b3439f5f668db518 Mon Sep 17 00:00:00 2001 From: ASP1234 Date: Thu, 23 Jun 2016 12:05:11 +0000 Subject: Implement CLKSOMV_f Block --- data_structures_correct/CLKSOMV_f.js | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 data_structures_correct/CLKSOMV_f.js diff --git a/data_structures_correct/CLKSOMV_f.js b/data_structures_correct/CLKSOMV_f.js new file mode 100644 index 0000000..346241f --- /dev/null +++ b/data_structures_correct/CLKSOMV_f.js @@ -0,0 +1,19 @@ +function CLKSOMV_f() { + + CLKSOMV_f.prototype.define = function CLKSOMV_f() { + var model = scicos_model(); + model.sim = new ScilabString(["sum"]); + model.evtin = new ScilabDouble([1], [1], [1]); + model.evtout = new ScilabDouble([1]); + model.blocktype = new ScilabString(["d"]); + model.firing = new ScilabDouble([-1]); + model.dep_ut = new ScilabBoolean([false, false]); + + var gr_i = new ScilabString(["xstringb(orig(1),orig(2),\"CLKSOMV_f\",sz(1),sz(2));"]); + this.x = new standard_define(new ScilabDouble([2, 2]), model, new ScilabDouble(), gr_i); + return new RoundBlock(this.x); + } + CLKSOMV_f.prototype.details = function CLKSOMV_f() { + return this.x; + } +} -- cgit