tutorials/multiphase/compressibleInterFoam: Use cleanVoFCase rather than cleanCase

Resolves https://bugs.openfoam.org/view.php?id=3868
This commit is contained in:
Henry Weller
2022-07-30 22:18:45 +01:00
parent 3efe097c69
commit 3bcfdb1ae3
8 changed files with 4 additions and 198 deletions

View File

@ -1,50 +0,0 @@
/*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: dev
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
format ascii;
class volScalarField;
location "0";
object T.air;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 0 0 1 0 0 0];
internalField uniform 300;
boundaryField
{
leftWall
{
type calculated;
value uniform 300;
}
rightWall
{
type calculated;
value uniform 300;
}
lowerWall
{
type calculated;
value uniform 300;
}
atmosphere
{
type calculated;
value uniform 300;
}
defaultFaces
{
type empty;
}
}
// ************************************************************************* //

View File

@ -1,50 +0,0 @@
/*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: dev
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
format ascii;
class volScalarField;
location "0";
object T.water;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 0 0 1 0 0 0];
internalField uniform 300;
boundaryField
{
leftWall
{
type calculated;
value uniform 300;
}
rightWall
{
type calculated;
value uniform 300;
}
lowerWall
{
type calculated;
value uniform 300;
}
atmosphere
{
type calculated;
value uniform 300;
}
defaultFaces
{
type empty;
}
}
// ************************************************************************* //

View File

@ -4,6 +4,6 @@ cd ${0%/*} || exit 1 # Run from this directory
# Source tutorial clean functions
. $WM_PROJECT_DIR/bin/tools/CleanFunctions
cleanCase
cleanVoFCase
#------------------------------------------------------------------------------

View File

@ -4,7 +4,6 @@ cd ${0%/*} || exit 1 # Run from this directory
# Source tutorial clean functions
. $WM_PROJECT_DIR/bin/tools/CleanFunctions
cleanCase
rm -rf 0/T.*
cleanVoFCase
#------------------------------------------------------------------------------

View File

@ -1,46 +0,0 @@
/*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: dev
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
format ascii;
class volScalarField;
location "0";
object T.air;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 0 0 1 0 0 0];
internalField uniform 300;
boundaryField
{
sides
{
type calculated;
value uniform 300;
}
top
{
type calculated;
value uniform 300;
}
frontAndBack
{
type calculated;
value uniform 300;
}
region0_to_wallFilmRegion_wallFilmFaces
{
type calculated;
value uniform 300;
}
}
// ************************************************************************* //

View File

@ -1,46 +0,0 @@
/*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: dev
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
format ascii;
class volScalarField;
location "0";
object T.liquid;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 0 0 1 0 0 0];
internalField uniform 300;
boundaryField
{
sides
{
type calculated;
value uniform 300;
}
top
{
type calculated;
value uniform 300;
}
frontAndBack
{
type calculated;
value uniform 300;
}
region0_to_wallFilmRegion_wallFilmFaces
{
type calculated;
value uniform 300;
}
}
// ************************************************************************* //

View File

@ -4,7 +4,7 @@ cd ${0%/*} || exit 1 # Run from this directory
# Source tutorial clean functions
. $WM_PROJECT_DIR/bin/tools/CleanFunctions
cleanCase
cleanVoFCase
rm -rf constant/wallFilmRegion/polyMesh

View File

@ -4,8 +4,7 @@ cd ${0%/*} || exit 1 # Run from this directory
# Source tutorial clean functions
. $WM_PROJECT_DIR/bin/tools/CleanFunctions
cleanCase
rm -rf 0/T.*
cleanVoFCase
rm -rf constant/plateRegion/polyMesh
#------------------------------------------------------------------------------