STEP-1
Example 1 for DEALII


STEP-1 is the first example from the official DEAL.II example directory. It is included here primarily to illustrate the steps necessary to run a program that uses DEAL.II.

This script is set up for a very specific situation involving the FSU RCC cluster. In this case, programs are run using the SLURM batch queueing system.

DEAL.II has an examples directory, and the first example is in the step-1 subdirectory. I would recommend making your own working directory, and copying from the /usr/local/dealii/examples/step-1 directory the following two files

Now in that directory, you need to create, one time, the necessary makefile, by issuing a command something like:

        cmake -DDEAL_II_DIR=/usr/local/dealii .
      

If all goes well, then you can create the step-1 executable by

        make
      
after which, the executable will be called "step-1". The step-1.sh SLURM script will do the making and running, with MPI.

Files you might find useful:

You can go up one level to the DEALII directory.


Last revised on 11 May 2016.