This utility can be run with no arguments or configuration, and will create a unit cube mesh with empty patches on all sides.
15 lines
312 B
Bash
Executable File
15 lines
312 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Run from this directory
|
|
cd "${0%/*}" || exit 1
|
|
|
|
# Source run functions
|
|
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
|
|
|
runApplication zeroDimensionalMesh
|
|
runApplication $(getApplication)
|
|
|
|
( cd validation && ./createGraphs )
|
|
|
|
#------------------------------------------------------------------------------
|