summaryrefslogtreecommitdiff
path: root/js/NonLinear
diff options
context:
space:
mode:
Diffstat (limited to 'js/NonLinear')
-rw-r--r--js/NonLinear/ABS_VALUE.js1
-rw-r--r--js/NonLinear/DLRADAPT_f.js6
-rw-r--r--js/NonLinear/EXPBLK_f.js1
-rw-r--r--js/NonLinear/EXPBLK_m.js1
-rw-r--r--js/NonLinear/INTRP2BLK_f.js3
-rw-r--r--js/NonLinear/INTRPLBLK_f.js2
-rw-r--r--js/NonLinear/LOGBLK_f.js1
-rw-r--r--js/NonLinear/LOOKUP2D.js5
-rw-r--r--js/NonLinear/MAXMIN.js3
-rw-r--r--js/NonLinear/POWBLK_f.js1
-rw-r--r--js/NonLinear/PRODUCT.js1
-rw-r--r--js/NonLinear/QUANT_f.js2
-rw-r--r--js/NonLinear/SATURATION.js3
-rw-r--r--js/NonLinear/SAT_f.js3
-rw-r--r--js/NonLinear/SIGNUM.js1
-rw-r--r--js/NonLinear/TrigFun.js1
16 files changed, 35 insertions, 0 deletions
diff --git a/js/NonLinear/ABS_VALUE.js b/js/NonLinear/ABS_VALUE.js
index cb2a098b..1002b0ea 100644
--- a/js/NonLinear/ABS_VALUE.js
+++ b/js/NonLinear/ABS_VALUE.js
@@ -21,6 +21,7 @@ function ABS_VALUE() {
ABS_VALUE.prototype.get = function ABS_VALUE() {
}
ABS_VALUE.prototype.set = function ABS_VALUE() {
+ this.zcr = parseFloat((arguments[0]["zcr"]))
this.x = arg1;
graphics = arg1.graphics;
exprs = graphics.exprs;
diff --git a/js/NonLinear/DLRADAPT_f.js b/js/NonLinear/DLRADAPT_f.js
index b41e53ed..b8018d7b 100644
--- a/js/NonLinear/DLRADAPT_f.js
+++ b/js/NonLinear/DLRADAPT_f.js
@@ -29,6 +29,12 @@ function DLRADAPT_f() {
DLRADAPT_f.prototype.get = function DLRADAPT_f() {
}
DLRADAPT_f.prototype.set = function DLRADAPT_f() {
+ this.p = parseFloat((arguments[0]["p"]))
+ this.rn = parseFloat((arguments[0]["rn"]))
+ this.rd = parseFloat((arguments[0]["rd"]))
+ this.g = parseFloat((arguments[0]["g"]))
+ this.last_u = parseFloat((arguments[0]["last_u"]))
+ this.last_y = parseFloat((arguments[0]["last_y"]))
this.x = arg1;
graphics = arg1.graphics;
exprs = graphics.exprs;
diff --git a/js/NonLinear/EXPBLK_f.js b/js/NonLinear/EXPBLK_f.js
index ec4262b2..656447a9 100644
--- a/js/NonLinear/EXPBLK_f.js
+++ b/js/NonLinear/EXPBLK_f.js
@@ -21,6 +21,7 @@ function EXPBLK_f() {
EXPBLK_f.prototype.get = function EXPBLK_f() {
}
EXPBLK_f.prototype.set = function EXPBLK_f() {
+ this.a = parseFloat((arguments[0]["a"]))
this.x = arg1;
graphics = arg1.graphics;
exprs = graphics.exprs;
diff --git a/js/NonLinear/EXPBLK_m.js b/js/NonLinear/EXPBLK_m.js
index 177a00ef..7b792a21 100644
--- a/js/NonLinear/EXPBLK_m.js
+++ b/js/NonLinear/EXPBLK_m.js
@@ -25,6 +25,7 @@ function EXPBLK_m() {
EXPBLK_m.prototype.get = function EXPBLK_m() {
}
EXPBLK_m.prototype.set = function EXPBLK_m() {
+ this.a = parseFloat((arguments[0]["a"]))
this.x = arg1;
graphics = arg1.graphics;
exprs = graphics.exprs;
diff --git a/js/NonLinear/INTRP2BLK_f.js b/js/NonLinear/INTRP2BLK_f.js
index 4bdc3f25..b5eb2a08 100644
--- a/js/NonLinear/INTRP2BLK_f.js
+++ b/js/NonLinear/INTRP2BLK_f.js
@@ -23,6 +23,9 @@ function INTRP2BLK_f() {
INTRP2BLK_f.prototype.get = function INTRP2BLK_f() {
}
INTRP2BLK_f.prototype.set = function INTRP2BLK_f() {
+ this.a = parseFloat((arguments[0]["a"]))
+ this.b = parseFloat((arguments[0]["b"]))
+ this.c = parseFloat((arguments[0]["c"]))
this.x = arg1;
graphics = arg1.graphics;
exprs = graphics.exprs;
diff --git a/js/NonLinear/INTRPLBLK_f.js b/js/NonLinear/INTRPLBLK_f.js
index 53e12461..624cd5be 100644
--- a/js/NonLinear/INTRPLBLK_f.js
+++ b/js/NonLinear/INTRPLBLK_f.js
@@ -21,6 +21,8 @@ function INTRPLBLK_f() {
INTRPLBLK_f.prototype.get = function INTRPLBLK_f() {
}
INTRPLBLK_f.prototype.set = function INTRPLBLK_f() {
+ this.a = parseFloat((arguments[0]["a"]))
+ this.b = parseFloat((arguments[0]["b"]))
this.x = arg1;
graphics = arg1.graphics;
exprs = graphics.exprs;
diff --git a/js/NonLinear/LOGBLK_f.js b/js/NonLinear/LOGBLK_f.js
index 359068b9..b969d220 100644
--- a/js/NonLinear/LOGBLK_f.js
+++ b/js/NonLinear/LOGBLK_f.js
@@ -21,6 +21,7 @@ function LOGBLK_f() {
LOGBLK_f.prototype.get = function LOGBLK_f() {
}
LOGBLK_f.prototype.set = function LOGBLK_f() {
+ this.a = parseFloat((arguments[0]["a"]))
this.x = arg1;
graphics = arg1.graphics;
exprs = graphics.exprs;
diff --git a/js/NonLinear/LOOKUP2D.js b/js/NonLinear/LOOKUP2D.js
index a5de1b4d..23558d4a 100644
--- a/js/NonLinear/LOOKUP2D.js
+++ b/js/NonLinear/LOOKUP2D.js
@@ -27,6 +27,11 @@ function LOOKUP2D() {
LOOKUP2D.prototype.get = function LOOKUP2D() {
}
LOOKUP2D.prototype.set = function LOOKUP2D() {
+ this.xx = parseFloat((arguments[0]["xx"]))
+ this.yy = parseFloat((arguments[0]["yy"]))
+ this.zz = parseFloat((arguments[0]["zz"]))
+ this.Method = parseFloat((arguments[0]["Method"]))
+ this.graf = parseFloat((arguments[0]["graf"]))
this.x = arg1;
model = arg1.model;
graphics = arg1.graphics;
diff --git a/js/NonLinear/MAXMIN.js b/js/NonLinear/MAXMIN.js
index 17a6e8ee..4db80f20 100644
--- a/js/NonLinear/MAXMIN.js
+++ b/js/NonLinear/MAXMIN.js
@@ -20,6 +20,9 @@ function MAXMIN() {
MAXMIN.prototype.get = function MAXMIN() {
}
MAXMIN.prototype.set = function MAXMIN() {
+ this.mm = parseFloat((arguments[0]["mm"]))
+ this.nin = parseFloat((arguments[0]["nin"]))
+ this.zcr = parseFloat((arguments[0]["zcr"]))
this.x = arg1;
graphics = arg1.graphics;
exprs = graphics.exprs;
diff --git a/js/NonLinear/POWBLK_f.js b/js/NonLinear/POWBLK_f.js
index 302238de..98aea55e 100644
--- a/js/NonLinear/POWBLK_f.js
+++ b/js/NonLinear/POWBLK_f.js
@@ -21,6 +21,7 @@ function POWBLK_f() {
POWBLK_f.prototype.get = function POWBLK_f() {
}
POWBLK_f.prototype.set = function POWBLK_f() {
+ this.a = parseFloat((arguments[0]["a"]))
this.x = arg1;
graphics = arg1.graphics;
exprs = graphics.exprs;
diff --git a/js/NonLinear/PRODUCT.js b/js/NonLinear/PRODUCT.js
index a16b0380..12d6d329 100644
--- a/js/NonLinear/PRODUCT.js
+++ b/js/NonLinear/PRODUCT.js
@@ -20,6 +20,7 @@ function PRODUCT() {
PRODUCT.prototype.get = function PRODUCT() {
}
PRODUCT.prototype.set = function PRODUCT() {
+ this.sgn = parseFloat((arguments[0]["sgn"]))
this.x = arg1;
graphics = arg1.graphics;
model = arg1.model;
diff --git a/js/NonLinear/QUANT_f.js b/js/NonLinear/QUANT_f.js
index bb7f487a..46e78e40 100644
--- a/js/NonLinear/QUANT_f.js
+++ b/js/NonLinear/QUANT_f.js
@@ -22,6 +22,8 @@ function QUANT_f() {
QUANT_f.prototype.get = function QUANT_f() {
}
QUANT_f.prototype.set = function QUANT_f() {
+ this.pas = parseFloat((arguments[0]["pas"]))
+ this.meth = parseFloat((arguments[0]["meth"]))
this.x = arg1;
graphics = arg1.graphics;
exprs = graphics.exprs;
diff --git a/js/NonLinear/SATURATION.js b/js/NonLinear/SATURATION.js
index dd9022c5..efc3b9f2 100644
--- a/js/NonLinear/SATURATION.js
+++ b/js/NonLinear/SATURATION.js
@@ -24,6 +24,9 @@ function SATURATION() {
SATURATION.prototype.get = function SATURATION() {
}
SATURATION.prototype.set = function SATURATION() {
+ this.maxp = parseFloat((arguments[0]["maxp"]))
+ this.minp = parseFloat((arguments[0]["minp"]))
+ this.zeroc = parseFloat((arguments[0]["zeroc"]))
this.x = arg1;
graphics = arg1.graphics;
exprs = graphics.exprs;
diff --git a/js/NonLinear/SAT_f.js b/js/NonLinear/SAT_f.js
index ce87f450..55d66f3d 100644
--- a/js/NonLinear/SAT_f.js
+++ b/js/NonLinear/SAT_f.js
@@ -24,6 +24,9 @@ function SAT_f() {
SAT_f.prototype.get = function SAT_f() {
}
SAT_f.prototype.set = function SAT_f() {
+ this.minp = parseFloat((arguments[0]["minp"]))
+ this.maxp = parseFloat((arguments[0]["maxp"]))
+ this.pente = parseFloat((arguments[0]["pente"]))
this.x = arg1;
graphics = arg1.graphics;
exprs = graphics.exprs;
diff --git a/js/NonLinear/SIGNUM.js b/js/NonLinear/SIGNUM.js
index 2f5e5033..7776dbc7 100644
--- a/js/NonLinear/SIGNUM.js
+++ b/js/NonLinear/SIGNUM.js
@@ -21,6 +21,7 @@ function SIGNUM() {
SIGNUM.prototype.get = function SIGNUM() {
}
SIGNUM.prototype.set = function SIGNUM() {
+ this.zcr = parseFloat((arguments[0]["zcr"]))
this.x = arg1;
graphics = arg1.graphics;
exprs = graphics.exprs;
diff --git a/js/NonLinear/TrigFun.js b/js/NonLinear/TrigFun.js
index fbc3d85f..599301fa 100644
--- a/js/NonLinear/TrigFun.js
+++ b/js/NonLinear/TrigFun.js
@@ -18,6 +18,7 @@ function TrigFun() {
TrigFun.prototype.get = function TrigFun() {
}
TrigFun.prototype.set = function TrigFun() {
+ this.fun = parseFloat((arguments[0]["fun"]))
this.x = arg1;
graphics = arg1.graphics;
exprs = graphics.exprs;