Renamed folder -> directory for consistency with POSIX and the rest of OpenFOAM

This commit is contained in:
Henry
2014-01-30 13:01:04 +00:00
parent c080ca7e86
commit ee4e19ef85
59 changed files with 95 additions and 86 deletions

View File

@ -38,7 +38,7 @@ boundaryField
outlet
{
type inletOutlet;
type pressureInletOutletVelocity;
inletValue uniform (0 0 0);
value uniform (0 0 0);
}

View File

@ -31,7 +31,13 @@ boundaryField
outlet
{
type fixedValue;
type totalPressure;
p0 $internalField;
U U;
phi phi;
rho rho;
psi none;
gamma 1;
value $internalField;
}

View File

@ -4,7 +4,7 @@ cd ${0%/*} || exit 1 # run from this directory
# Source tutorial run functions
. $WM_PROJECT_DIR/bin/tools/RunFunctions
# copy propeller surface from resources folder
# copy propeller surface from resources directory
cp $FOAM_TUTORIALS/resources/geometry/propellerTip.obj.gz constant/triSurface/

View File

@ -23,7 +23,7 @@ libs
application interPhaseChangeDyMFoam;
startFrom latestTime;
startFrom startTime;
startTime 0;
@ -54,6 +54,6 @@ runTimeModifiable true;
adjustTimeStep yes;
maxCo 2;
maxAlphaCo 2;
maxAlphaCo 1;
// ************************************************************************* //

View File

@ -30,6 +30,7 @@ solvers
tolerance 1e-8;
relTol 0;
maxIter 10;
minIter 1;
};
"pcorr.*"
@ -65,12 +66,12 @@ solvers
smoother symGaussSeidel;
tolerance 1e-6;
relTol 0.1;
minIter 1;
}
"(U|k|epsilon)Final"
{
$U;
tolerance 1e-6;
relTol 0;
}
}
@ -78,8 +79,8 @@ solvers
PIMPLE
{
correctPhi yes;
nOuterCorrectors 1;
nCorrectors 3;
nOuterCorrectors 3;
nCorrectors 1;
nNonOrthogonalCorrectors 0;
}