]> SALOME platform Git repositories - modules/yacs.git/blob - FreeFemComponent.idl
Salome HOME
68dbab2f5dbe16eb14eb099e9d9daaec70d8cccd
[modules/yacs.git] / FreeFemComponent.idl
1 #include "SALOME_Component.idl"
2
3 module Solveur {
4
5   struct Bord {
6     string X;
7     string Y;
8     long   n;
9   };
10   typedef sequence<Bord> seqBords;
11
12   interface FreeFemComponent : Engines::EngineComponent
13 {
14     
15     void Bords(in seqBords B);
16     void Flux(in string u1, in string u2);
17
18     void Convection(in string cond_init, in double dt, in long n);
19
20   };
21
22 };