summaryrefslogtreecommitdiff
path: root/js/NonLinear/SAT_f.js
diff options
context:
space:
mode:
authorSunil Shetye2018-06-25 12:08:56 +0530
committerSunil Shetye2018-06-25 12:45:27 +0530
commit7c70459c10aed0d74ee03896abaf47fefdbf7c8f (patch)
tree6f6acc6a5087295c6e59f0f94bfda5025049d5fa /js/NonLinear/SAT_f.js
parent870479a2e4b932426a904b2ebae7e4ee72037326 (diff)
downloadsci2js-7c70459c10aed0d74ee03896abaf47fefdbf7c8f.tar.gz
sci2js-7c70459c10aed0d74ee03896abaf47fefdbf7c8f.tar.bz2
sci2js-7c70459c10aed0d74ee03896abaf47fefdbf7c8f.zip
separate out code for getvalue
Diffstat (limited to 'js/NonLinear/SAT_f.js')
-rw-r--r--js/NonLinear/SAT_f.js62
1 files changed, 31 insertions, 31 deletions
diff --git a/js/NonLinear/SAT_f.js b/js/NonLinear/SAT_f.js
index 52827570..dec7d1c5 100644
--- a/js/NonLinear/SAT_f.js
+++ b/js/NonLinear/SAT_f.js
@@ -1,47 +1,47 @@
/* autogenerated from "macros/NonLinear/SAT_f.sci" */
function SAT_f() {
SAT_f.prototype.define = function SAT_f() {
-minp=-1;
-maxp=1;
-slope=1;
-rpar=[[minp],[maxp],[slope]];
-model=scicos_model();
-model.sim=list("lusat",1);
-model.in1=1;
-model.nzcross=2;
-model.out=1;
-model.rpar=[[minp],[maxp],[slope]];
-model.blocktype="c";
-model.dep_ut=[true,false];
-exprs=[[string(minp)],[string(maxp)],[string(slope)]];
-gr_i=[];
-x=standard_define([2,2],model,exprs,gr_i);
+ minp = -1;
+ maxp = 1;
+ slope = 1;
+ rpar = [[minp],[maxp],[slope]];
+ model = scicos_model();
+ model.sim = list("lusat",1);
+ model.in1 = 1;
+ model.nzcross = 2;
+ model.out = 1;
+ model.rpar = [[minp],[maxp],[slope]];
+ model.blocktype = "c";
+ model.dep_ut = [true,false];
+ exprs = [[string(minp)],[string(maxp)],[string(slope)]];
+ gr_i = [];
+ x = standard_define([2,2],model,exprs,gr_i);
}
SAT_f.prototype.details = function SAT_f() {
}
SAT_f.prototype.get = function SAT_f() {
}
SAT_f.prototype.set = function SAT_f() {
-x=arg1;
-graphics=arg1.graphics;
-exprs=graphics.exprs;
-model=arg1.model;
-while (true) {
-[ok,minp,maxp,pente,exprs]=scicos_getvalue("Set Saturation parameters",[["Min"],["Max"],["Slope"]],list("vec",1,"vec",1,"vec",1),exprs);
-if (!ok) {
+ x = arg1;
+ graphics = arg1.graphics;
+ exprs = graphics.exprs;
+ model = arg1.model;
+ while (true) {
+ [ok,minp,maxp,pente,exprs] = scicos_getvalue("Set Saturation parameters",[["Min"],["Max"],["Slope"]],list("vec",1,"vec",1,"vec",1),exprs);
+ if (!ok) {
break;
}
-if (maxp<=0) {
+ if (maxp<=0) {
message("Max must be strictly positive");
-} else if (pente<=0) {
+ } else if (pente<=0) {
message("Slope must be strictly positive");
-} else {
-rpar=[[minp/pente],[maxp/pente],[pente]];
-model.rpar=rpar;
-model.firing=[];
-graphics.exprs=exprs;
-x.graphics=graphics;
-x.model=model;
+ } else {
+ rpar = [[minp/pente],[maxp/pente],[pente]];
+ model.rpar = rpar;
+ model.firing = [];
+ graphics.exprs = exprs;
+ x.graphics = graphics;
+ x.model = model;
break;
}
}