- now largely encapsulated using PstreamBuffers methods, which makes it simpler to centralize and maintain - avoid building intermediate structures when sending data, remove unused methods/data TUT: parallel version of depthCharge2D STYLE: minor update in ProcessorTopology
19 lines
466 B
Bash
Executable File
19 lines
466 B
Bash
Executable File
#!/bin/sh
|
|
cd "${0%/*}" || exit # Run from this directory
|
|
. ${WM_PROJECT_DIR:?}/bin/tools/RunFunctions # Tutorial run functions
|
|
#------------------------------------------------------------------------------
|
|
|
|
runApplication blockMesh
|
|
|
|
restore0Dir
|
|
|
|
runApplication setFields
|
|
|
|
runApplication setAlphaField
|
|
|
|
decomposePar
|
|
|
|
runParallel $(getApplication)
|
|
|
|
#------------------------------------------------------------------------------
|