summaryrefslogtreecommitdiff
path: root/macros/Sources/CLOCK_c.sci
diff options
context:
space:
mode:
authorSunil Shetye2018-06-07 17:48:55 +0530
committerSunil Shetye2018-06-07 17:48:55 +0530
commit75a3a91595f06a1ac7d8ccc0a1ca0b5cd9552abf (patch)
tree2b584d8b6062684bd18beab96c5de019bd9c81c9 /macros/Sources/CLOCK_c.sci
parentf97e60278c61e42308c32047109fcb983ded8dcd (diff)
downloadsci2js-75a3a91595f06a1ac7d8ccc0a1ca0b5cd9552abf.tar.gz
sci2js-75a3a91595f06a1ac7d8ccc0a1ca0b5cd9552abf.tar.bz2
sci2js-75a3a91595f06a1ac7d8ccc0a1ca0b5cd9552abf.zip
add macros from scicos_blocks from scilab 5.5.2
Diffstat (limited to 'macros/Sources/CLOCK_c.sci')
-rw-r--r--macros/Sources/CLOCK_c.sci126
1 files changed, 126 insertions, 0 deletions
diff --git a/macros/Sources/CLOCK_c.sci b/macros/Sources/CLOCK_c.sci
new file mode 100644
index 00000000..02a150b5
--- /dev/null
+++ b/macros/Sources/CLOCK_c.sci
@@ -0,0 +1,126 @@
+// Xcos
+//
+// Copyright (C) INRIA - METALAU Project <scicos@inria.fr>
+// Copyright (C) 2011 - Bernard DUJARDIN <bernard.dujardin@contrib.scilab.org>
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+//
+// See the file ../license.txt
+//
+
+function [x,y,typ]=CLOCK_c(job,arg1,arg2)
+ x=[];
+ y=[];
+ typ=[];
+ select job
+ case "set" then
+ // look for the evtdly block
+ for i=1:length(arg1.model.rpar.objs) do
+ o = arg1.model.rpar.objs(i);
+ if typeof(o) == "Block" & o.gui == "EVTDLY_c" then
+ path = i;
+ break;
+ end
+ end
+ newpar=list();
+ xx=arg1.model.rpar.objs(path)
+ exprs=xx.graphics.exprs
+ model=xx.model;
+ t0_old=model.firing
+ dt_old= model.rpar(1)
+ model_n=model
+ while %t do
+ [ok, dt, t0, exprs0]=scicos_getvalue([msprintf(gettext("Set %s block parameters"), "CLOCK_c");" "; gettext("Event clock generator");" "; ..
+ gettext("&nbsp; Do not start if ''Initialisation Time'' is negative");" "], [gettext("Period");gettext("Initialisation Time")], list("vec",1,"vec",1), exprs);
+
+ if ~ok then
+ break,
+ end
+ if dt <= 0 then
+ block_parameter_error(msprintf(gettext("Wrong values for ''%s'' parameter: %5.1e."), gettext("Period"), dt), gettext("Strictly positive number expected."));
+ ok=%f
+ end
+ if ok then
+ xx.graphics.exprs=exprs0
+ model.rpar=[dt;t0]
+ model.firing=t0
+ xx.model=model
+ arg1.model.rpar.objs(path)=xx// Update
+ break
+ end
+ end
+
+ if ~and([t0_old dt_old]==[t0 dt]) then
+ // parameter changed
+ newpar(size(newpar)+1)=path// Notify modification
+ end
+ if t0_old<>t0 then
+ needcompile=2,
+ else
+ needcompile=0,
+ end
+ x=arg1
+ y=needcompile
+ typ=newpar
+ case "define" then
+ evtdly=EVTDLY_c("define")
+ evtdly.graphics.orig=[320,232]
+ evtdly.graphics.sz=[40,40]
+ evtdly.graphics.flip=%t
+ evtdly.graphics.exprs=["0.1";"0.1"]
+ evtdly.graphics.pein=6
+ evtdly.graphics.peout=3
+ evtdly.model.rpar=[0.1;0.1]
+ evtdly.model.firing=0.1
+
+ output_port=CLKOUT_f("define")
+ output_port.graphics.orig=[399,162]
+ output_port.graphics.sz=[20,20]
+ output_port.graphics.flip=%t
+ output_port.graphics.exprs="1"
+ output_port.graphics.pein=5
+ output_port.model.ipar=1
+
+ split=CLKSPLIT_f("define")
+ split.graphics.orig=[380.71066;172]
+ split.graphics.pein=3,
+ split.graphics.peout=[5;6]
+
+ gr_i=[]
+ diagram=scicos_diagram();
+ diagram.objs(1)=output_port
+ diagram.objs(2)=evtdly
+ diagram.objs(3)=scicos_link(xx=[340;340;380.71],..
+ yy=[226.29;172;172],..
+ ct=[5,-1],from=[2,1],to=[4,1])
+ diagram.objs(4)=split
+ diagram.objs(5)=scicos_link(xx=[380.71;399],yy=[172;172],..
+ ct=[5,-1],from=[4,1],to=[1,1])
+ diagram.objs(6)=scicos_link(xx=[380.71;380.71;340;340],..
+ yy=[172;302;302;277.71],..
+ ct=[5,-1],from=[4,2],to=[2,1])
+ x=scicos_block()
+ x.gui="CLOCK_c"
+ x.graphics.sz=[2,2]
+ x.graphics.gr_i=gr_i
+ x.graphics.peout=0
+ x.model.sim="csuper"
+ x.model.evtout=1
+ x.model.blocktype="h"
+ x.model.firing=%f
+ x.model.dep_ut=[%f %f]
+ x.model.rpar=diagram
+ end
+endfunction