cd ~
git clone https://github.com/dpzwick/ppiclF.git # clone ppiclF
git clone https://github.com/Nek5000/Nek5000.git # clone Nek5000
mkdir TestCase # make test directory
cd TestCase
cp -r ../ppiclF/examples/Nek5000/* . # copy example files to test case
cd ../ppiclF # go to ppiclF code
cp ../TestCase/user_routines/* source/ # copy ppiclf_user.f and PPICLF_USER.h to source
make # build ppiclF
cd ../TestCase
./makenek uniform # build Nek5000 and link with ppiclF
echo uniform > SESSION.NAME && echo `pwd`/ >> SESSION.NAME # create Nek5000 necessary file
mpirun -np 4 nek5000 # run case with 4 processors
Nadeem Malik