Fix tutorials: basic/sixDOFSolver, combustion/dieselFoam/aachenBomb, combustion/reactingFoam/ras/counterFlowFlame2D
This commit is contained in:
parent
cf802d88a8
commit
f39555b198
5 changed files with 18 additions and 3 deletions
|
@ -119,7 +119,7 @@ set (UPDATE_TYPE git)
|
|||
#
|
||||
find_package(Git)
|
||||
if(GIT_FOUND)
|
||||
message("git found: ${GIT_EXECUTABLE}")
|
||||
message("Git was found: ${GIT_EXECUTABLE}")
|
||||
endif()
|
||||
|
||||
|
||||
|
|
|
@ -119,7 +119,7 @@ set (UPDATE_TYPE git)
|
|||
#
|
||||
find_package(Git)
|
||||
if(GIT_FOUND)
|
||||
message("git found: ${GIT_EXECUTABLE}")
|
||||
message("Git was found: ${GIT_EXECUTABLE}")
|
||||
endif()
|
||||
|
||||
|
||||
|
|
|
@ -9,5 +9,5 @@ tutorialPath=`dirname $0`/..
|
|||
|
||||
for case in $cases
|
||||
do
|
||||
runApplication $application $case
|
||||
(cd $case; runApplication $application)
|
||||
done
|
||||
|
|
|
@ -45,6 +45,13 @@ dragModel standardDragModel;
|
|||
|
||||
wallModel reflect;
|
||||
|
||||
sprayIteration
|
||||
{
|
||||
sprayIterate 1;
|
||||
sprayRelaxFactor 1;
|
||||
minimumParcelMass 1e-14;
|
||||
}
|
||||
|
||||
specConstAtomizationCoeffs
|
||||
{
|
||||
dropletNozzleDiameterRatio ( 0.4 );
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
#!/bin/sh
|
||||
# Source tutorial run functions
|
||||
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
||||
|
||||
application="reactingFoam"
|
||||
|
||||
runApplication blockMesh
|
||||
runApplication $application
|
Reference in a new issue