diff options
Diffstat (limited to 'js/Linear/INTEGRAL_m.js')
-rw-r--r-- | js/Linear/INTEGRAL_m.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/js/Linear/INTEGRAL_m.js b/js/Linear/INTEGRAL_m.js index 82262192..78e03eca 100644 --- a/js/Linear/INTEGRAL_m.js +++ b/js/Linear/INTEGRAL_m.js @@ -23,6 +23,14 @@ function INTEGRAL_m() { return this.x; } INTEGRAL_m.prototype.get = function INTEGRAL_m() { + var options = { + x0:["Initial Condition",this.x0], + reinit:["With re-intialization (1:yes, 0:no)",this.reinit], + satur:["With saturation (1:yes, 0:no)",this.satur], + maxp:["Upper limit",this.maxp], + lowp:["Lower limit",this.lowp], + } + return options; } INTEGRAL_m.prototype.set = function INTEGRAL_m() { this.x0 = parseFloat((arguments[0]["x0"])) |