Hello Ben.

Sorry, the documentation is really out of date about standard FEM ...
Here is a simple example:

-----------------------------------
// read the mesh (not the .geo but the .msh)
mesh M = read(gmsh,"cube.msh");

//solve the problem
solve(u) in M
{
  pde(u)
   -div(grad(u)) = 1;
  u = 0 on 0; // applies Dirichlet on triangles of reference 0
}
-----------------------------------

I hope that helps,
Stéphane.



_______________________________________________
ff3d-users mailing list
[email protected]
http://lists.nongnu.org/mailman/listinfo/ff3d-users

Reply via email to