Requirements:

test01,test02, test03, test04:
- oofem installed. It can be obtained from www.oofem.org.
- Examples require oofem python module compiled. The python oofem module
  can be found in python directory of oofem installation. 
  Follow README file in this directory on how to compile
  python module using bjam.
- MayaVi installation (http://code.enthought.com/projects/mayavi/)

test05:
- sifel installed. It can be obtained from cml.fsv.cvut.cz/
- Examples require sifel python module compiled. The python sifel module
  is distributed as a part of sifel api module (api/sifel/pysifel) 
  Follow README file in this directory on how to compile
  python module using bjam.
- MayaVi installation (http://code.enthought.com/projects/mayavi/)

To run examples:

- To run examples you should set PYTHONPATH to contain paths to directory 
  containing mupif source directory and to oofem python directory:

  export PYTHONPATH=$PYTHONPATH:/home/$USER/mupif:/home/$USER/oofem/trunk/bindings/python/bin/gcc-4.6/debug

  The mupif module should be in directory named mupif. If svn trunk version is used,
  then one can create a link (named mupif) pointing to the trunk directory.

- Set LD_LIBRARY_PATH to point to boost generated libraries of oofem 
  python module. This path can be best obtained from "bjam -d+2" 
  when compiling oofem python module.

  export LD_LIBRARY_PATH="/home/$USER/oofem/trunk/bindings/python/bin/gcc-4.6/debug:/home/$USER/oofem/trunk/bindings/python/boost/bin.v2/libs/python/build/gcc-4.6/debug:/usr/bin:/usr/lib:/usr/lib32:/usr/lib64:$LD_LIBRARY_PATH"

- Run the tests using MayaVi or python as:
  "mayavi2 test01.py" or
  "python test01.py"

