22 lines
567 B
Bash
Executable File
22 lines
567 B
Bash
Executable File
#!/bin/sh
|
|
cd ${0%/*} || exit 1 # run from this directory
|
|
|
|
# Source tutorial run functions
|
|
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
|
|
|
# Set application name
|
|
application=$(getApplication)
|
|
|
|
runApplication blockMesh
|
|
runApplication $application
|
|
|
|
# Get and transpose results
|
|
cp postProcessing/numberDensity/0/numberDensity.dat .
|
|
sed -i -e '1d' -e 's/# /#/g' numberDensity.dat
|
|
transposeFile numberDensity.dat > numberDensity.transposed.dat
|
|
|
|
# Create plot
|
|
( cd validation && ./createGraphs )
|
|
|
|
#------------------------------------------------------------------------------
|