17 lines
512 B
Bash
Executable File
17 lines
512 B
Bash
Executable File
#!/bin/sh
|
|
cd ${0%/*} || exit 1 # Run from this directory
|
|
. $WM_PROJECT_DIR/bin/tools/RunFunctions # Tutorial run functions
|
|
|
|
./Allrun.pre
|
|
|
|
runApplication -s primaryRegion decomposePar
|
|
runApplication -s wallFilmRegion decomposePar -region wallFilmRegion
|
|
|
|
|
|
runParallel $(getApplication)
|
|
|
|
runApplication -s wallFilmRegion reconstructPar -region wallFilmRegion
|
|
runApplication -s primaryRegion reconstructPar
|
|
|
|
#------------------------------------------------------------------------------
|