20 lines
628 B
Bash
Executable File
20 lines
628 B
Bash
Executable File
#!/bin/sh
|
|
cd "${0%/*}" || exit # Run from this directory
|
|
. ${WM_PROJECT_DIR:?}/bin/tools/RunFunctions # Tutorial run functions
|
|
#------------------------------------------------------------------------------
|
|
|
|
# Run serial
|
|
./Allrun.pre
|
|
mpirun -app ./mpirun_left_right.schema
|
|
|
|
## Run parallel
|
|
# ./Allrun.pre-parallel
|
|
#(cd left && runApplication blockMesh)
|
|
#(cd left && runApplication decomposePar)
|
|
#(cd right && runApplication blockMesh)
|
|
#(cd right && runApplication decomposePar)
|
|
#
|
|
#mpirun -app ./mpirun.schema
|
|
|
|
#------------------------------------------------------------------------------
|