diff options
author | Avi Dutta | 2016-06-30 10:50:04 +0000 |
---|---|---|
committer | Avi Dutta | 2016-06-30 10:50:04 +0000 |
commit | 35a0e0f88529f160a00d189a13f21a97b1c4aa81 (patch) | |
tree | aabcd1ab4420cfcd07af5f80f161bf939d90667f /data_structures_correct | |
parent | 8d9854d15f423681a07ee72a68c732d81957cb00 (diff) | |
download | xcos-on-web-35a0e0f88529f160a00d189a13f21a97b1c4aa81.tar.gz xcos-on-web-35a0e0f88529f160a00d189a13f21a97b1c4aa81.tar.bz2 xcos-on-web-35a0e0f88529f160a00d189a13f21a97b1c4aa81.zip |
Implement IdealTransformer Block
Diffstat (limited to 'data_structures_correct')
-rw-r--r-- | data_structures_correct/IdealTransformer.js | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/data_structures_correct/IdealTransformer.js b/data_structures_correct/IdealTransformer.js new file mode 100644 index 0000000..f1a6be2 --- /dev/null +++ b/data_structures_correct/IdealTransformer.js @@ -0,0 +1,63 @@ +function IdealTransformer() { + + IdealTransformer.prototype.define = function IdealTransformer() + + { + this.ModelName = "IdealTransformer"; + this.PrametersValue = [1]; + this.ParametersName = ["N"]; + + var model = scicos_model(); + + this.Typein = []; + this.Typeout = []; + this.MI = []; + this.MO = []; + this.P = [[2.5,90,2,0],[2.5,10,2,0],[97.5,90,-2,0],[97.5,10,-2,0]]; + this.PortName = [["p1"],["n1"],["p2"],["n2"]]; + + for (var i = 0; i < size(this.P, "r"); i++) { + if (this.P[i][2] == 1) { + this.Typein.push(["E"]); + this.MI.push(this.PortName[i]); + } + + if (this.P[i][2] == 2) { + this.Typein.push(["I"]); + this.MI.push(this.PortName[i]); + } + if (this.P[i][2] == -1) { + this.Typeout.push(["E"]); + this.MO.push(this.PortName[i]); + } + if (this.P[i][2] == -2) { + this.Typeout.push(["I"]); + this.MO.push(this.PortName[i]); + } + } + var mo = modelica(); + model.sim = new ScilabString([this.ModelName]); + mo.inputs = new ScilabString(...this.MI); + mo.outputs = new ScilabString(...this.MO); + model.rpar = new ScilabDouble(this.PrametersValue); + console.log(zeros(getData(this.ParametersName))); + mo.parameters = list(new ScilabString(this.ParametersName), new ScilabDouble(this.PrametersValue), new ScilabDouble(zeros(getData(this.ParametersName)))); + var exprs = new ScilabString(["1"]); + var gr_i = new ScilabString(["xstringb(orig(1),orig(2),\"IdealTransformer\",sz(1),sz(2));"]); + model.blocktype = new ScilabString(["c"]); + model.dep_ut = new ScilabBoolean([false, true]); + mo.model = new ScilabString([this.ModelName]); + model.equations = mo; + model.in = new ScilabDouble(...ones(size(this.MI, "*"), 1)); + model.out = new ScilabDouble(...ones(size(this.MO, "*"), 1)); + this.x = new standard_define(new ScilabDouble([2,2]), model, exprs, list(gr_i), new ScilabDouble([0])); + this.x.graphics.in_implicit = new ScilabDouble(this.Typein); + this.x.graphics.out_implicit = new ScilabDouble(this.Typeout); + return new BasicBlock(this.x); + } + + IdealTransformer.prototype.details = function IdealTransformer() { + return this.x; + } + +} |