| Introduction |
|
FreeFEM is an implementation of the Gfem language dedicated to the finite element method. It provides you a way to solve Partial Differential Equations (PDE) simply. Although you can solve quite complicated problems can be solved also. FreeFEM is written in a mix of C/C++ idioms. This is not a example of good programming but it might help understanding some scientific computing programming techniques. A book written by O. Pironneau anb B. Lucquin has been published for this purpose. It is available in French and will be in english very soon. You may ask questions, send comments or bug reports to freefem@asci.fr this is an alias to people working on FreeFEM. The FreeFEM team is: A very small example of what you can do: /* describe the mesh with analytic functions*/ border(1,0,6.28,20) begin x:=cos(t); y:=sin(t); end; buildmesh(200); /* let's create the mesh now */ solve(u) begin /* describe the problem */ onbdy(1) u =0; /* dirichlet condition */ pde(u) -laplace(u) = x*y ; end; plot(u); /* plot the solution */ There is some on going work: |

Ce répertoire contient différentes versions de FreeFEM.
La dernière version de FreeFEM est freefem-3.4.tar.gz
This directory contains the different version of FreeFEM.
The latest version of FreeFEM is ../../ftp/freefem/freefem-3.4.tar.gz

|
Copyright © 1994, 1995, 1996, 1997 Numerica Copyright © 1997 christophe Prud'homme Send feedback to Webmaster |