Salome HOME
Merge from V6_main 01/04/2013
[tools/yacsgen.git] / Examples / pyth2 / components.py
1 # Copyright (C) 2009-2013  EDF R&D
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19
20 import os
21
22 #import context from ..
23 execfile("../context.py")
24 from module_generator import Generator,Module,Service,PYComponent
25
26 cwd=os.getcwd()
27
28
29 body="""
30       #b1
31       dep=calcium.CP_ITERATION
32       val=numpy.zeros(10,'d')
33       val[5]=a*b
34       nval=10
35       print "--------> Appel calcium.cp_edb"
36       info=calcium.cp_edb(component, dep, 0., 1, "ba", nval,val)
37       val=numpy.zeros(10,'d')
38       info,tt,ii,mval=calcium.cp_ldb(component, dep, 0.,1., 1, "aa", nval,val)
39       print mval,val
40       c=a+b
41       d=a-b
42       err=calcium.cp_fin(component,calcium.CP_ARRET)
43 """
44 c1=PYComponent("compo2",services=[
45           Service("s1",inport=[("a","double"),("b","double")],
46                        outport=[("c","double"),("d","double")],
47                        instream=[("aa","CALCIUM_double","I"),],
48                        outstream=[("ba","CALCIUM_double","I"),],
49                        defs="#def1",body=body,
50                  ),
51          ],
52          kind="exe",
53          )
54
55
56 g=Generator(Module("pycompos",components=[c1],prefix="./install"),context)
57 g.generate()
58 g.bootstrap()
59 g.configure()
60 g.make()
61 g.install()
62 g.make_appli("appli", restrict=["KERNEL"], altmodules={"GUI":GUI_ROOT_DIR, "YACS":YACS_ROOT_DIR})
63