Salome HOME
Update copyrights
[modules/yacs.git] / doc / exemples / exemple7 / FreeFem.idl
1 module Solveur {
2
3   struct Bord {
4     string X;
5     string Y;
6     long   n;
7   };
8   typedef sequence<Bord> seqBords;
9
10   interface FreeFem {
11     
12     void Bords(in seqBords B);
13     void Flux(in string u1, in string u2);
14
15     void Convection(in string cond_init, in double dt, in long n);
16
17   };
18
19 };