- adjust contributor names to include windows port BUG: bash script marked as sh (fixes #1890)
16 lines
465 B
Bash
Executable File
16 lines
465 B
Bash
Executable File
#!/bin/sh
|
|
cd "${0%/*}" || exit # Run from this directory
|
|
. ${WM_PROJECT_DIR:?}/bin/tools/RunFunctions # Tutorial run functions
|
|
#------------------------------------------------------------------------------
|
|
|
|
runApplication extrudeMesh
|
|
|
|
# For output fields from checkMesh
|
|
mkdir -p 1
|
|
|
|
runApplication checkMesh -writeAllFields
|
|
|
|
paraFoam -touch -vtk
|
|
|
|
#------------------------------------------------------------------------------
|