diff options
Diffstat (limited to 'js/Linear')
36 files changed, 144 insertions, 0 deletions
diff --git a/js/Linear/BIGSOM_f.js b/js/Linear/BIGSOM_f.js index 56f0180a..336de911 100644 --- a/js/Linear/BIGSOM_f.js +++ b/js/Linear/BIGSOM_f.js @@ -46,4 +46,8 @@ function BIGSOM_f() { } return new BigSom(this.x); } + BIGSOM_f.prototype.get_popup_title = function BIGSOM_f() { + var set_param_popup_title = "Set sum block parameters"; + return set_param_popup_title; + } } diff --git a/js/Linear/CLINDUMMY_f.js b/js/Linear/CLINDUMMY_f.js index 6ad21810..08889e05 100644 --- a/js/Linear/CLINDUMMY_f.js +++ b/js/Linear/CLINDUMMY_f.js @@ -21,4 +21,8 @@ function CLINDUMMY_f() { CLINDUMMY_f.prototype.set = function CLINDUMMY_f() { return new BasicBlock(this.x); } + CLINDUMMY_f.prototype.get_popup_title = function CLINDUMMY_f() { + var set_param_popup_title = "Set parameters"; + return set_param_popup_title; + } } diff --git a/js/Linear/CLR.js b/js/Linear/CLR.js index d321e6cf..76b73cd1 100644 --- a/js/Linear/CLR.js +++ b/js/Linear/CLR.js @@ -84,4 +84,8 @@ function CLR() { } return new BasicBlock(this.x); } + CLR.prototype.get_popup_title = function CLR() { + var set_param_popup_title = "Set continuous SISO transfer parameters"; + return set_param_popup_title; + } } diff --git a/js/Linear/CLR_f.js b/js/Linear/CLR_f.js index 93df4407..41205677 100644 --- a/js/Linear/CLR_f.js +++ b/js/Linear/CLR_f.js @@ -84,4 +84,8 @@ function CLR_f() { } return new BasicBlock(this.x); } + CLR_f.prototype.get_popup_title = function CLR_f() { + var set_param_popup_title = "Set continuous SISO transfer parameters"; + return set_param_popup_title; + } } diff --git a/js/Linear/CLSS.js b/js/Linear/CLSS.js index fd96652d..71262cdc 100644 --- a/js/Linear/CLSS.js +++ b/js/Linear/CLSS.js @@ -103,4 +103,8 @@ function CLSS() { } return new BasicBlock(this.x); } + CLSS.prototype.get_popup_title = function CLSS() { + var set_param_popup_title = "Set continuous linear system parameters"; + return set_param_popup_title; + } } diff --git a/js/Linear/CLSS_f.js b/js/Linear/CLSS_f.js index 9ba6e096..1d5e6543 100644 --- a/js/Linear/CLSS_f.js +++ b/js/Linear/CLSS_f.js @@ -93,4 +93,8 @@ function CLSS_f() { } return new BasicBlock(this.x); } + CLSS_f.prototype.get_popup_title = function CLSS_f() { + var set_param_popup_title = "Set continuous linear system parameters"; + return set_param_popup_title; + } } diff --git a/js/Linear/DELAYV_f.js b/js/Linear/DELAYV_f.js index 44c7740d..645b2887 100644 --- a/js/Linear/DELAYV_f.js +++ b/js/Linear/DELAYV_f.js @@ -73,4 +73,8 @@ function DELAYV_f() { } return new BasicBlock(this.x); } + DELAYV_f.prototype.get_popup_title = function DELAYV_f() { + var set_param_popup_title = "Set delay parameters"; + return set_param_popup_title; + } } diff --git a/js/Linear/DELAY_f.js b/js/Linear/DELAY_f.js index 9fba30db..db59eeac 100644 --- a/js/Linear/DELAY_f.js +++ b/js/Linear/DELAY_f.js @@ -133,4 +133,8 @@ function DELAY_f() { var typ = newpar; return new BasicBlock(this.x); } + DELAY_f.prototype.get_popup_title = function DELAY_f() { + var set_param_popup_title = "This block implements as a discretized delay"; + return set_param_popup_title; + } } diff --git a/js/Linear/DERIV.js b/js/Linear/DERIV.js index 55cc8833..136a70f5 100644 --- a/js/Linear/DERIV.js +++ b/js/Linear/DERIV.js @@ -21,4 +21,8 @@ function DERIV() { DERIV.prototype.set = function DERIV() { return new BasicBlock(this.x); } + DERIV.prototype.get_popup_title = function DERIV() { + var set_param_popup_title = "Set parameters"; + return set_param_popup_title; + } } diff --git a/js/Linear/DIFF_c.js b/js/Linear/DIFF_c.js index c57690c2..462cdc76 100644 --- a/js/Linear/DIFF_c.js +++ b/js/Linear/DIFF_c.js @@ -60,4 +60,8 @@ function DIFF_c() { this.x.model.firing = []; return new BasicBlock(this.x); } + DIFF_c.prototype.get_popup_title = function DIFF_c() { + var set_param_popup_title = "Set continuous linear system parameters"; + return set_param_popup_title; + } } diff --git a/js/Linear/DLR.js b/js/Linear/DLR.js index 4c37051c..a7ec18ef 100644 --- a/js/Linear/DLR.js +++ b/js/Linear/DLR.js @@ -83,4 +83,8 @@ function DLR() { this.x.model.firing = []; return new BasicBlock(this.x); } + DLR.prototype.get_popup_title = function DLR() { + var set_param_popup_title = "Set discrete SISO transfer parameters"; + return set_param_popup_title; + } } diff --git a/js/Linear/DLR_f.js b/js/Linear/DLR_f.js index 353d355d..0a8f345f 100644 --- a/js/Linear/DLR_f.js +++ b/js/Linear/DLR_f.js @@ -83,4 +83,8 @@ function DLR_f() { this.x.model.firing = []; return new BasicBlock(this.x); } + DLR_f.prototype.get_popup_title = function DLR_f() { + var set_param_popup_title = "Set discrete SISO transfer parameters"; + return set_param_popup_title; + } } diff --git a/js/Linear/DLSS.js b/js/Linear/DLSS.js index 1cf4bdb0..93f290a7 100644 --- a/js/Linear/DLSS.js +++ b/js/Linear/DLSS.js @@ -102,4 +102,8 @@ function DLSS() { } return new BasicBlock(this.x); } + DLSS.prototype.get_popup_title = function DLSS() { + var set_param_popup_title = "Set discrete linear system parameters"; + return set_param_popup_title; + } } diff --git a/js/Linear/DLSS_f.js b/js/Linear/DLSS_f.js index c64892fd..4ed5ded4 100644 --- a/js/Linear/DLSS_f.js +++ b/js/Linear/DLSS_f.js @@ -92,4 +92,8 @@ function DLSS_f() { } return new BasicBlock(this.x); } + DLSS_f.prototype.get_popup_title = function DLSS_f() { + var set_param_popup_title = "Set discrete linear system parameters"; + return set_param_popup_title; + } } diff --git a/js/Linear/DOLLAR.js b/js/Linear/DOLLAR.js index 4ee741b9..8ec5cb62 100644 --- a/js/Linear/DOLLAR.js +++ b/js/Linear/DOLLAR.js @@ -98,4 +98,8 @@ function DOLLAR() { } return new BasicBlock(this.x); } + DOLLAR.prototype.get_popup_title = function DOLLAR() { + var set_param_popup_title = "Set 1/z block parameters"; + return set_param_popup_title; + } } diff --git a/js/Linear/DOLLAR_f.js b/js/Linear/DOLLAR_f.js index 489b831b..9d779f65 100644 --- a/js/Linear/DOLLAR_f.js +++ b/js/Linear/DOLLAR_f.js @@ -62,4 +62,8 @@ function DOLLAR_f() { } return new BasicBlock(this.x); } + DOLLAR_f.prototype.get_popup_title = function DOLLAR_f() { + var set_param_popup_title = "Set 1/z block parameters"; + return set_param_popup_title; + } } diff --git a/js/Linear/DOLLAR_m.js b/js/Linear/DOLLAR_m.js index b595cc33..536b8171 100644 --- a/js/Linear/DOLLAR_m.js +++ b/js/Linear/DOLLAR_m.js @@ -98,4 +98,8 @@ function DOLLAR_m() { } return new BasicBlock(this.x); } + DOLLAR_m.prototype.get_popup_title = function DOLLAR_m() { + var set_param_popup_title = "Set 1/z block parameters"; + return set_param_popup_title; + } } diff --git a/js/Linear/GAINBLK.js b/js/Linear/GAINBLK.js index e34577c8..b45fa57d 100644 --- a/js/Linear/GAINBLK.js +++ b/js/Linear/GAINBLK.js @@ -165,4 +165,8 @@ function GAINBLK() { } return new BasicBlock(this.x); } + GAINBLK.prototype.get_popup_title = function GAINBLK() { + var set_param_popup_title = "Set gain block parameters"; + return set_param_popup_title; + } } diff --git a/js/Linear/GAINBLK_f.js b/js/Linear/GAINBLK_f.js index 7b850053..837c561b 100644 --- a/js/Linear/GAINBLK_f.js +++ b/js/Linear/GAINBLK_f.js @@ -55,4 +55,8 @@ function GAINBLK_f() { } return new BasicBlock(this.x); } + GAINBLK_f.prototype.get_popup_title = function GAINBLK_f() { + var set_param_popup_title = "Set gain block parameters"; + return set_param_popup_title; + } } diff --git a/js/Linear/GAIN_f.js b/js/Linear/GAIN_f.js index a4035f12..45909562 100644 --- a/js/Linear/GAIN_f.js +++ b/js/Linear/GAIN_f.js @@ -55,4 +55,8 @@ function GAIN_f() { } return new BasicBlock(this.x); } + GAIN_f.prototype.get_popup_title = function GAIN_f() { + var set_param_popup_title = "Set gain block parameters"; + return set_param_popup_title; + } } diff --git a/js/Linear/INTEGRAL.js b/js/Linear/INTEGRAL.js index 622a10d1..2c13986e 100644 --- a/js/Linear/INTEGRAL.js +++ b/js/Linear/INTEGRAL.js @@ -96,4 +96,8 @@ function INTEGRAL() { } return new BasicBlock(this.x); } + INTEGRAL.prototype.get_popup_title = function INTEGRAL() { + var set_param_popup_title = "Set Integral block parameters"; + return set_param_popup_title; + } } diff --git a/js/Linear/INTEGRAL_f.js b/js/Linear/INTEGRAL_f.js index 8a543977..df9da2ee 100644 --- a/js/Linear/INTEGRAL_f.js +++ b/js/Linear/INTEGRAL_f.js @@ -40,4 +40,8 @@ function INTEGRAL_f() { this.x.model.firing = []; return new BasicBlock(this.x); } + INTEGRAL_f.prototype.get_popup_title = function INTEGRAL_f() { + var set_param_popup_title = "Set continuous linear system parameters"; + return set_param_popup_title; + } } diff --git a/js/Linear/INTEGRAL_m.js b/js/Linear/INTEGRAL_m.js index 13be3c60..67e8de42 100644 --- a/js/Linear/INTEGRAL_m.js +++ b/js/Linear/INTEGRAL_m.js @@ -143,4 +143,8 @@ function INTEGRAL_m() { } return new BasicBlock(this.x); } + INTEGRAL_m.prototype.get_popup_title = function INTEGRAL_m() { + var set_param_popup_title = "Set Integral block parameters"; + return set_param_popup_title; + } } diff --git a/js/Linear/PID.js b/js/Linear/PID.js index dbea864e..176b777f 100644 --- a/js/Linear/PID.js +++ b/js/Linear/PID.js @@ -115,4 +115,8 @@ function PID() { var typ = newpar; return new BasicBlock(this.x); } + PID.prototype.get_popup_title = function PID() { + var set_param_popup_title = "Set PID parameters"; + return set_param_popup_title; + } } diff --git a/js/Linear/REGISTER.js b/js/Linear/REGISTER.js index 40cf87c7..a71bf832 100644 --- a/js/Linear/REGISTER.js +++ b/js/Linear/REGISTER.js @@ -90,4 +90,8 @@ function REGISTER() { } return new BasicBlock(this.x); } + REGISTER.prototype.get_popup_title = function REGISTER() { + var set_param_popup_title = "Set delay parameters"; + return set_param_popup_title; + } } diff --git a/js/Linear/REGISTER_f.js b/js/Linear/REGISTER_f.js index 237fe2ba..5ae08868 100644 --- a/js/Linear/REGISTER_f.js +++ b/js/Linear/REGISTER_f.js @@ -47,4 +47,8 @@ function REGISTER_f() { } return new BasicBlock(this.x); } + REGISTER_f.prototype.get_popup_title = function REGISTER_f() { + var set_param_popup_title = "Set delay parameters"; + return set_param_popup_title; + } } diff --git a/js/Linear/SAMPHOLD.js b/js/Linear/SAMPHOLD.js index 6340d7cc..8e0477b8 100644 --- a/js/Linear/SAMPHOLD.js +++ b/js/Linear/SAMPHOLD.js @@ -23,4 +23,8 @@ function SAMPHOLD() { this.x.model.firing = []; return new BasicBlock(this.x); } + SAMPHOLD.prototype.get_popup_title = function SAMPHOLD() { + var set_param_popup_title = "Set parameters"; + return set_param_popup_title; + } } diff --git a/js/Linear/SAMPHOLD_m.js b/js/Linear/SAMPHOLD_m.js index 1cab6cb5..8bc8205f 100644 --- a/js/Linear/SAMPHOLD_m.js +++ b/js/Linear/SAMPHOLD_m.js @@ -54,4 +54,8 @@ function SAMPHOLD_m() { } return new BasicBlock(this.x); } + SAMPHOLD_m.prototype.get_popup_title = function SAMPHOLD_m() { + var set_param_popup_title = "Set parameters Block"; + return set_param_popup_title; + } } diff --git a/js/Linear/SAMPLEHOLD_f.js b/js/Linear/SAMPLEHOLD_f.js index 5fed6721..9df1c5c1 100644 --- a/js/Linear/SAMPLEHOLD_f.js +++ b/js/Linear/SAMPLEHOLD_f.js @@ -23,4 +23,8 @@ function SAMPLEHOLD_f() { this.x.model.firing = []; return new BasicBlock(this.x); } + SAMPLEHOLD_f.prototype.get_popup_title = function SAMPLEHOLD_f() { + var set_param_popup_title = "Set parameters"; + return set_param_popup_title; + } } diff --git a/js/Linear/SOM_f.js b/js/Linear/SOM_f.js index a025688d..4fd3c9b5 100644 --- a/js/Linear/SOM_f.js +++ b/js/Linear/SOM_f.js @@ -39,4 +39,8 @@ function SOM_f() { throw "user error"; return new BasicBlock(this.x); } + SOM_f.prototype.get_popup_title = function SOM_f() { + var set_param_popup_title = "Set parameters"; + return set_param_popup_title; + } } diff --git a/js/Linear/SUMMATION.js b/js/Linear/SUMMATION.js index 09fee1b2..7738b30c 100644 --- a/js/Linear/SUMMATION.js +++ b/js/Linear/SUMMATION.js @@ -150,4 +150,8 @@ function SUMMATION() { } return new Summation(this.x); } + SUMMATION.prototype.get_popup_title = function SUMMATION() { + var set_param_popup_title = "Set sum block parameters"; + return set_param_popup_title; + } } diff --git a/js/Linear/SUM_f.js b/js/Linear/SUM_f.js index 4fec2bf4..96d28c42 100644 --- a/js/Linear/SUM_f.js +++ b/js/Linear/SUM_f.js @@ -21,4 +21,8 @@ function SUM_f() { SUM_f.prototype.set = function SUM_f() { return new RoundBlock(this.x); } + SUM_f.prototype.get_popup_title = function SUM_f() { + var set_param_popup_title = "Set parameters"; + return set_param_popup_title; + } } diff --git a/js/Linear/TCLSS.js b/js/Linear/TCLSS.js index bc9af1b3..b1937628 100644 --- a/js/Linear/TCLSS.js +++ b/js/Linear/TCLSS.js @@ -100,4 +100,8 @@ function TCLSS() { } return new BasicBlock(this.x); } + TCLSS.prototype.get_popup_title = function TCLSS() { + var set_param_popup_title = "Set continuous linear system parameters"; + return set_param_popup_title; + } } diff --git a/js/Linear/TCLSS_f.js b/js/Linear/TCLSS_f.js index 5c6f6417..481c3a2e 100644 --- a/js/Linear/TCLSS_f.js +++ b/js/Linear/TCLSS_f.js @@ -100,4 +100,8 @@ function TCLSS_f() { } return new BasicBlock(this.x); } + TCLSS_f.prototype.get_popup_title = function TCLSS_f() { + var set_param_popup_title = "Set continuous linear system parameters"; + return set_param_popup_title; + } } diff --git a/js/Linear/TIME_DELAY.js b/js/Linear/TIME_DELAY.js index deaad0f0..cfd1c47f 100644 --- a/js/Linear/TIME_DELAY.js +++ b/js/Linear/TIME_DELAY.js @@ -68,4 +68,8 @@ function TIME_DELAY() { } return new BasicBlock(this.x); } + TIME_DELAY.prototype.get_popup_title = function TIME_DELAY() { + var set_param_popup_title = "Set delay parameters"; + return set_param_popup_title; + } } diff --git a/js/Linear/VARIABLE_DELAY.js b/js/Linear/VARIABLE_DELAY.js index 362cbe20..1ad95a2a 100644 --- a/js/Linear/VARIABLE_DELAY.js +++ b/js/Linear/VARIABLE_DELAY.js @@ -67,4 +67,8 @@ function VARIABLE_DELAY() { } return new BasicBlock(this.x); } + VARIABLE_DELAY.prototype.get_popup_title = function VARIABLE_DELAY() { + var set_param_popup_title = "Set delay parameters"; + return set_param_popup_title; + } } |