CHANNEL
A Sample 2D Flow Problem


CHANNEL is a rectangular region that is 3 units wide and 1 unit high. It is used as a sample problem for the Stokes solver.

To run the problem directly, you only need the user-supplied routines in channel.f90, the node data in nodes6.txt, and the element data in triangles6.txt.

You compile and link the solver with channel.f90, using commands like:

        f90 free_fem_stokes.f90 channel.f90
        mv a.out channel
      
and then run the program with the command
        ./channel nodes6.txt triangles6.txt
      

Some of the files needed to run the problem include:

The pressures are associated with a subset of the full set of nodes, and with an order 3 triangulation of those nodes. Note that, in the order 3 triangulation, the nodes are renumbered, and do NOT inherit the labels used in the order 6 triangulation.

The velocities are associated with the full set of nodes, and with an order 6 triangulation of those nodes.


Last revised on 25 September 2005.