SPIRAL
A Sample 2D Flow Problem


SPIRAL is a square region that is 1 unit wide and 1 unit high. Zero Dirichlet conditions have been applied on all sides. Normally, this would result in zero flow. However, the right hand sides of the two momentum equations have been devised to induce a sort of spiral flow (actually, the flow is more like a series of concentric loops).

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

You can run the program with the MATLAB command

        free_fem_stokes ( 'nodes6.txt', 'triangles6.txt' )
      

The user-supplied files needed to run the problem include:

The printed output from a run is:

The geometry is defined by sets of nodes and triangles. The velocities use the full set of nodes, and quadratic (6 node) triangles.

The pressures are associated with a subset of the nodes called "pressure nodes", and linear (3 node) triangles. Note that, in the order 3 triangulation, the nodes are renumbered, and do NOT inherit the labels used in the order 6 triangulation.

The pressures are a scalar quantity associated with the pressure nodes, the velocities are a vector quantity associated with the vector nodes.


Last revised on 26 March 2007.