incompressibleFluid: Completed the update of tutorial and template cases

to use the incompressibleFluid solver module rather than simpleFoam, pimpleFoam
or pisoFoam.
This commit is contained in:
Henry Weller
2022-09-15 10:58:28 +01:00
parent 2372cbdb8d
commit 020ec8b14d
24 changed files with 35 additions and 351 deletions

View File

@ -13,7 +13,9 @@ FoamFile
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
application simpleFoam;
application foamRun;
solver incompressibleFluid;
startFrom latestTime;

View File

@ -11,6 +11,6 @@ ls -d processor* | xargs -I {} rm -rf ./{}/0
ls -d processor* | xargs -I {} mv ./{}/500 ./{}/0
ls -d processor* | xargs -I {} rm -rf ./{}/0/uniform
runParallel pisoFoam
runParallel foamRun
runApplication reconstructPar

View File

@ -13,7 +13,9 @@ FoamFile
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
application pisoFoam;
application foamRun;
solver incompressibleFluid;
startFrom startTime;
@ -45,7 +47,7 @@ runTimeModifiable true;
cacheTemporaryObjects
(
SpalartAllmarasDDES:LESRegion
SpalartAllmarasDES:LESRegion
);
functions
@ -60,7 +62,7 @@ functions
objects
(
SpalartAllmarasDDES:LESRegion
SpalartAllmarasDES:LESRegion
);
}

View File

@ -34,7 +34,7 @@ solvers
relTol 0;
}
"(U|k|B|nuTilda)"
"(U|k|B|nuTilda).*"
{
solver smoothSolver;
smoother symGaussSeidel;

View File

@ -5,7 +5,7 @@ cd ${0%/*} || exit 1 # Run from this directory
. $WM_PROJECT_DIR/bin/tools/RunFunctions
# Mesh if necessary
if ! cloneMesh ../../../incompressible/pimpleFoam/RAS/propeller .
if ! cloneMesh ../../../../modules/incompressibleFluid/propeller .
then
./Allmesh
else