diff options
Diffstat (limited to 'data_structures_correct/Capacitor.js')
-rw-r--r-- | data_structures_correct/Capacitor.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data_structures_correct/Capacitor.js b/data_structures_correct/Capacitor.js index 1924ddd..d0c9f0d 100644 --- a/data_structures_correct/Capacitor.js +++ b/data_structures_correct/Capacitor.js @@ -4,7 +4,7 @@ function Capacitor() { var model = scicos_model(); var C = 0.01,v = 0; - model.rpar = new ScilabDouble([C], [v]); + model.rpar = new ScilabDouble([C],[v]); model.sim = new ScilabString(["Capacitor"]); model.blocktype = new ScilabString(["c"]); model.dep_ut = new ScilabBoolean([true, false]); |