The commands you cite will parse (first line) and compile (second) the jet.c code,
creating a 'jet' executable which then has to be launched with mpirun. How do you
run the code? example launch could look like:
mpirun -np 8 jet
(note: mpirun has many aliases on various systems)
Since you just used atomization.c, it is possible you just tried to replicate recipes
found there. They (recipes) are however written for "Mesu" and "Occigen" supercomputers
where MPI (distributed memory) parallelism is used. If however you're running locally,
e.g. on a laptop or a small (less than 32 cores) machine, the shared memory parallelism
(OpenMP) makes much more sense. (If you don't know what I'm talking about, then probably
you also should use OpenMP).
Citing (
http://basilisk.fr/sandbox/bugs/FloatingPoint), compilation with -fopenmp switch is done typically like:
qcc -O2 -fopenmp -g -Wall -o jet jet.c -lm
(other linking commands and switches might be necessary e.g. when using bview) which is then launched by simply typing
./jet .
good luck
w