Salome HOME
Merge from V6_main_20120808 08Aug12
[modules/yacs.git] / doc / exemples / exemple4 / useFreeFem.py
1 from FreeFem import *
2
3 C = FreeFem()
4
5 C.Flux("y", "-x")
6 C.Bords( [ Bord("x=cos(2*pi*t)", "y=sin(2*pi*t)",  100)] );
7 C.Convection('exp(-10*((x-0.3)^2 +(y-0.3)^2))', 0.1, 50)
8