mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: avoid backticks for getApplication
This commit is contained in:
@ -4,7 +4,7 @@ cd ${0%/*} || exit 1 # Run from this directory
|
||||
# Source tutorial run functions
|
||||
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
||||
|
||||
application=`getApplication`
|
||||
application=$(getApplication)
|
||||
|
||||
# create mesh
|
||||
runApplication blockMesh
|
||||
|
||||
@ -5,6 +5,6 @@ cd ${0%/*} || exit 1 # Run from this directory
|
||||
|
||||
./Allrun.pre
|
||||
|
||||
application=`getApplication`
|
||||
application=$(getApplication)
|
||||
|
||||
runApplication $application
|
||||
|
||||
@ -6,6 +6,6 @@ cd ${0%/*} || exit 1 # Run from this directory
|
||||
|
||||
./Allrun.pre
|
||||
|
||||
application=`getApplication`
|
||||
application=$(getApplication)
|
||||
|
||||
runApplication $application
|
||||
|
||||
@ -6,7 +6,7 @@ cd ${0%/*} || exit 1 # Run from this directory
|
||||
|
||||
./Allrun.pre
|
||||
|
||||
application=`getApplication`
|
||||
application=$(getApplication)
|
||||
|
||||
runApplication -s wallFilmRegion decomposePar -region wallFilmRegion
|
||||
runApplication -s primaryRegion decomposePar
|
||||
|
||||
@ -5,6 +5,6 @@ cd ${0%/*} || exit 1 # Run from this directory
|
||||
|
||||
./Allrun.pre
|
||||
|
||||
application=`getApplication`
|
||||
application=$(getApplication)
|
||||
|
||||
runApplication $application
|
||||
|
||||
@ -5,6 +5,6 @@ cd ${0%/*} || exit 1 # Run from this directory
|
||||
|
||||
./Allrun.pre
|
||||
|
||||
application=`getApplication`
|
||||
application=$(getApplication)
|
||||
|
||||
runApplication $application
|
||||
|
||||
@ -4,7 +4,7 @@ cd ${0%/*} || exit 1 # Run from this directory
|
||||
# Source tutorial run functions
|
||||
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
||||
|
||||
application=`getApplication`
|
||||
application=$(getApplication)
|
||||
|
||||
# create mesh
|
||||
runApplication blockMesh
|
||||
|
||||
@ -15,6 +15,6 @@ runApplication potentialFoam
|
||||
\rm -f 0/phi
|
||||
|
||||
# run the solver
|
||||
runApplication `getApplication`
|
||||
runApplication $(getApplication)
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
|
||||
@ -15,6 +15,6 @@ runApplication potentialFoam
|
||||
\rm -f 0/phi
|
||||
|
||||
# run the solver
|
||||
runApplication `getApplication`
|
||||
runApplication $(getApplication)
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user