mirror of
https://github.com/OpenFOAM/OpenFOAM-6.git
synced 2025-12-08 06:57:46 +00:00
blockMesh: Change default location of blockMeshDict from constant/polyMesh to system
For multi-region cases the default location of blockMeshDict is now system/<region name> If the blockMeshDict is not found in system then the constant directory is also checked providing backward-compatibility
This commit is contained in:
@ -28,8 +28,10 @@ Description
|
|||||||
A multi-block mesh generator.
|
A multi-block mesh generator.
|
||||||
|
|
||||||
Uses the block mesh description found in
|
Uses the block mesh description found in
|
||||||
\a constant/polyMesh/blockMeshDict
|
\a system/blockMeshDict
|
||||||
(or \a constant/\<region\>/polyMesh/blockMeshDict).
|
or \a system/\<region\>/blockMeshDict
|
||||||
|
or \a constant/polyMesh/blockMeshDict
|
||||||
|
or \a constant/\<region\>/polyMesh/blockMeshDict
|
||||||
|
|
||||||
Usage
|
Usage
|
||||||
|
|
||||||
@ -88,50 +90,60 @@ int main(int argc, char *argv[])
|
|||||||
const word dictName("blockMeshDict");
|
const word dictName("blockMeshDict");
|
||||||
|
|
||||||
word regionName;
|
word regionName;
|
||||||
fileName polyMeshDir;
|
word regionPath;
|
||||||
|
|
||||||
|
// Check if the region is specified otherwise mesh the default region
|
||||||
if (args.optionReadIfPresent("region", regionName, polyMesh::defaultRegion))
|
if (args.optionReadIfPresent("region", regionName, polyMesh::defaultRegion))
|
||||||
{
|
{
|
||||||
// constant/<region>/polyMesh/blockMeshDict
|
|
||||||
polyMeshDir = regionName/polyMesh::meshSubDir;
|
|
||||||
|
|
||||||
Info<< nl << "Generating mesh for region " << regionName << endl;
|
Info<< nl << "Generating mesh for region " << regionName << endl;
|
||||||
|
regionPath = regionName;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Search for the appropriate blockMesh dictionary....
|
||||||
|
|
||||||
|
fileName dictPath;
|
||||||
|
|
||||||
|
// Check if the dictionary is specified on the command-line
|
||||||
|
if (args.optionFound("dict"))
|
||||||
|
{
|
||||||
|
dictPath = args["dict"];
|
||||||
|
|
||||||
|
dictPath =
|
||||||
|
(
|
||||||
|
isDir(dictPath)
|
||||||
|
? dictPath/dictName
|
||||||
|
: dictPath
|
||||||
|
);
|
||||||
|
}
|
||||||
|
// Check if dictionary is present in the constant directory
|
||||||
|
else if
|
||||||
|
(
|
||||||
|
exists
|
||||||
|
(
|
||||||
|
runTime.path()/runTime.constant()
|
||||||
|
/regionPath/polyMesh::meshSubDir/dictName
|
||||||
|
)
|
||||||
|
)
|
||||||
|
{
|
||||||
|
dictPath =
|
||||||
|
runTime.path()/runTime.constant()
|
||||||
|
/regionPath/polyMesh::meshSubDir/dictName;
|
||||||
|
}
|
||||||
|
// Otherwise assume the dictionary is present in the system directory
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
// constant/polyMesh/blockMeshDict
|
dictPath = runTime.path()/runTime.system()/regionPath/dictName;
|
||||||
polyMeshDir = polyMesh::meshSubDir;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
IOobject meshDictIO
|
IOobject meshDictIO
|
||||||
(
|
(
|
||||||
dictName,
|
dictPath,
|
||||||
runTime.constant(),
|
|
||||||
polyMeshDir,
|
|
||||||
runTime,
|
runTime,
|
||||||
IOobject::MUST_READ,
|
IOobject::MUST_READ,
|
||||||
IOobject::NO_WRITE,
|
IOobject::NO_WRITE,
|
||||||
false
|
false
|
||||||
);
|
);
|
||||||
|
|
||||||
if (args.optionFound("dict"))
|
|
||||||
{
|
|
||||||
const fileName dictPath = args["dict"];
|
|
||||||
|
|
||||||
meshDictIO = IOobject
|
|
||||||
(
|
|
||||||
(
|
|
||||||
isDir(dictPath)
|
|
||||||
? dictPath/dictName
|
|
||||||
: dictPath
|
|
||||||
),
|
|
||||||
runTime,
|
|
||||||
IOobject::MUST_READ,
|
|
||||||
IOobject::NO_WRITE,
|
|
||||||
false
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!meshDictIO.headerOk())
|
if (!meshDictIO.headerOk())
|
||||||
{
|
{
|
||||||
FatalErrorIn(args.executable())
|
FatalErrorIn(args.executable())
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
cd ${0%/*} || exit 1 # Run from this directory
|
cd ${0%/*} || exit 1 # Run from this directory
|
||||||
|
|
||||||
m4 constant/polyMesh/blockMeshDict.m4 > constant/polyMesh/blockMeshDict
|
m4 system/blockMeshDict.m4 > system/blockMeshDict
|
||||||
|
|
||||||
# Source tutorial run functions
|
# Source tutorial run functions
|
||||||
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
cd ${0%/*} || exit 1 # Run from this directory
|
cd ${0%/*} || exit 1 # Run from this directory
|
||||||
|
|
||||||
m4 constant/polyMesh/blockMeshDict.m4 > constant/polyMesh/blockMeshDict
|
m4 system/blockMeshDict.m4 > system/blockMeshDict
|
||||||
|
|
||||||
# Source tutorial run functions
|
# Source tutorial run functions
|
||||||
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
||||||
|
|||||||
@ -4,5 +4,5 @@ cd ${0%/*} || exit 1 # Run from this directory
|
|||||||
# Source tutorial run functions
|
# Source tutorial run functions
|
||||||
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
||||||
|
|
||||||
m4 < constant/polyMesh/blockMeshDict.m4 > constant/polyMesh/blockMeshDict
|
m4 < system/blockMeshDict.m4 > system/blockMeshDict
|
||||||
runApplication blockMesh
|
runApplication blockMesh
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
cd ${0%/*} || exit 1 # Run from this directory
|
cd ${0%/*} || exit 1 # Run from this directory
|
||||||
|
|
||||||
m4 constant/polyMesh/blockMeshDict.m4 > constant/polyMesh/blockMeshDict
|
m4 system/blockMeshDict.m4 > system/blockMeshDict
|
||||||
|
|
||||||
# Source tutorial run functions
|
# Source tutorial run functions
|
||||||
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
||||||
|
|||||||
@ -0,0 +1,123 @@
|
|||||||
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||||||
|
| ========= | |
|
||||||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||||
|
| \\ / O peration | Version: dev |
|
||||||
|
| \\ / A nd | Web: www.OpenFOAM.org |
|
||||||
|
| \\/ M anipulation | |
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
FoamFile
|
||||||
|
{
|
||||||
|
version 2.0;
|
||||||
|
format ascii;
|
||||||
|
class dictionary;
|
||||||
|
object blockMeshDict;
|
||||||
|
}
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
// block definition for a porosity with an angled inlet/outlet
|
||||||
|
// the porosity is not aligned with the main axes
|
||||||
|
//
|
||||||
|
|
||||||
|
convertToMeters 0.001;
|
||||||
|
|
||||||
|
vertices
|
||||||
|
(
|
||||||
|
// inlet region
|
||||||
|
( -150 0 -25 ) // pt 0 (in1b)
|
||||||
|
( -150 35.35533906 -25 ) // pt 1 (in2b)
|
||||||
|
( -150 0 25 ) // pt 2 (in1f)
|
||||||
|
( -150 35.35533906 25 ) // pt 3 (in2f)
|
||||||
|
|
||||||
|
// join inlet->outlet
|
||||||
|
( 0 0 -25 ) // pt 4 (join1b)
|
||||||
|
( -35.35533906 35.35533906 -25 ) // pt 5 (join2b)
|
||||||
|
( 0 0 25 ) // pt 6 (join1f)
|
||||||
|
( -35.35533906 35.35533906 25 ) // pt 7 (join2f)
|
||||||
|
|
||||||
|
// porosity ends ->outlet
|
||||||
|
( 70.71067812 70.71067812 -25 ) // pt 8 (poro1b)
|
||||||
|
( 35.35533906 106.06601718 -25 ) // pt 9 (poro2b)
|
||||||
|
( 70.71067812 70.71067812 25 ) // pt 10 (poro1f)
|
||||||
|
( 35.35533906 106.06601718 25 ) // pt 11 (poro2f)
|
||||||
|
|
||||||
|
// outlet
|
||||||
|
( 141.42135624 141.42135624 -25 ) // pt 12 (out1b)
|
||||||
|
( 106.06601718 176.7766953 -25 ) // pt 13 (out2b)
|
||||||
|
( 141.42135624 141.42135624 25 ) // pt 14 (out1f)
|
||||||
|
( 106.06601718 176.7766953 25 ) // pt 15 (out2f)
|
||||||
|
);
|
||||||
|
|
||||||
|
blocks
|
||||||
|
(
|
||||||
|
// inlet block
|
||||||
|
hex (0 4 5 1 2 6 7 3)
|
||||||
|
inlet ( 15 20 20 ) simpleGrading (1 1 1)
|
||||||
|
|
||||||
|
// porosity block
|
||||||
|
hex (4 8 9 5 6 10 11 7)
|
||||||
|
porosity ( 20 20 20 ) simpleGrading (1 1 1)
|
||||||
|
|
||||||
|
// outlet block
|
||||||
|
hex (8 12 13 9 10 14 15 11)
|
||||||
|
outlet ( 20 20 20 ) simpleGrading (1 1 1)
|
||||||
|
);
|
||||||
|
|
||||||
|
edges
|
||||||
|
(
|
||||||
|
);
|
||||||
|
|
||||||
|
patches
|
||||||
|
(
|
||||||
|
// is there no way of defining all my 'defaultFaces' to be 'wall'?
|
||||||
|
wall front
|
||||||
|
(
|
||||||
|
// inlet block
|
||||||
|
(2 6 7 3)
|
||||||
|
// outlet block
|
||||||
|
(10 14 15 11)
|
||||||
|
)
|
||||||
|
|
||||||
|
wall back
|
||||||
|
(
|
||||||
|
// inlet block
|
||||||
|
(1 5 4 0)
|
||||||
|
// outlet block
|
||||||
|
(9 13 12 8)
|
||||||
|
)
|
||||||
|
|
||||||
|
wall walls
|
||||||
|
(
|
||||||
|
// inlet block
|
||||||
|
(2 0 4 6)
|
||||||
|
(7 5 1 3)
|
||||||
|
// outlet block
|
||||||
|
(10 8 12 14)
|
||||||
|
(15 13 9 11)
|
||||||
|
)
|
||||||
|
|
||||||
|
wall porosityWall
|
||||||
|
(
|
||||||
|
// porosity block
|
||||||
|
(6 10 11 7)
|
||||||
|
// porosity block
|
||||||
|
(5 9 8 4)
|
||||||
|
// porosity block
|
||||||
|
(6 4 8 10)
|
||||||
|
(11 9 5 7)
|
||||||
|
)
|
||||||
|
|
||||||
|
patch inlet
|
||||||
|
(
|
||||||
|
(3 1 0 2)
|
||||||
|
)
|
||||||
|
|
||||||
|
patch outlet
|
||||||
|
(
|
||||||
|
(15 13 12 14)
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
mergePatchPairs
|
||||||
|
(
|
||||||
|
);
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
@ -0,0 +1 @@
|
|||||||
|
../../angledDuctImplicit/system/blockMeshDict.m4
|
||||||
@ -1,7 +1,7 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
cd ${0%/*} || exit 1 # Run from this directory
|
cd ${0%/*} || exit 1 # Run from this directory
|
||||||
|
|
||||||
m4 constant/polyMesh/blockMeshDict.m4 > constant/polyMesh/blockMeshDict
|
m4 system/blockMeshDict.m4 > system/blockMeshDict
|
||||||
|
|
||||||
# Source tutorial run functions
|
# Source tutorial run functions
|
||||||
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
||||||
|
|||||||
@ -20,24 +20,28 @@ FoamFile
|
|||||||
front
|
front
|
||||||
{
|
{
|
||||||
type wall;
|
type wall;
|
||||||
|
inGroups 1(wall);
|
||||||
nFaces 700;
|
nFaces 700;
|
||||||
startFace 63400;
|
startFace 63400;
|
||||||
}
|
}
|
||||||
back
|
back
|
||||||
{
|
{
|
||||||
type wall;
|
type wall;
|
||||||
|
inGroups 1(wall);
|
||||||
nFaces 700;
|
nFaces 700;
|
||||||
startFace 64100;
|
startFace 64100;
|
||||||
}
|
}
|
||||||
wall
|
walls
|
||||||
{
|
{
|
||||||
type wall;
|
type wall;
|
||||||
|
inGroups 1(wall);
|
||||||
nFaces 1400;
|
nFaces 1400;
|
||||||
startFace 64800;
|
startFace 64800;
|
||||||
}
|
}
|
||||||
porosityWall
|
porosityWall
|
||||||
{
|
{
|
||||||
type wall;
|
type wall;
|
||||||
|
inGroups 1(wall);
|
||||||
nFaces 1600;
|
nFaces 1600;
|
||||||
startFace 66200;
|
startFace 66200;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -0,0 +1,123 @@
|
|||||||
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||||||
|
| ========= | |
|
||||||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||||
|
| \\ / O peration | Version: dev |
|
||||||
|
| \\ / A nd | Web: www.OpenFOAM.org |
|
||||||
|
| \\/ M anipulation | |
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
FoamFile
|
||||||
|
{
|
||||||
|
version 2.0;
|
||||||
|
format ascii;
|
||||||
|
class dictionary;
|
||||||
|
object blockMeshDict;
|
||||||
|
}
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
// block definition for a porosity with an angled inlet/outlet
|
||||||
|
// the porosity is not aligned with the main axes
|
||||||
|
//
|
||||||
|
|
||||||
|
convertToMeters 0.001;
|
||||||
|
|
||||||
|
vertices
|
||||||
|
(
|
||||||
|
// inlet region
|
||||||
|
( -150 0 -25 ) // pt 0 (in1b)
|
||||||
|
( -150 35.35533906 -25 ) // pt 1 (in2b)
|
||||||
|
( -150 0 25 ) // pt 2 (in1f)
|
||||||
|
( -150 35.35533906 25 ) // pt 3 (in2f)
|
||||||
|
|
||||||
|
// join inlet->outlet
|
||||||
|
( 0 0 -25 ) // pt 4 (join1b)
|
||||||
|
( -35.35533906 35.35533906 -25 ) // pt 5 (join2b)
|
||||||
|
( 0 0 25 ) // pt 6 (join1f)
|
||||||
|
( -35.35533906 35.35533906 25 ) // pt 7 (join2f)
|
||||||
|
|
||||||
|
// porosity ends ->outlet
|
||||||
|
( 70.71067812 70.71067812 -25 ) // pt 8 (poro1b)
|
||||||
|
( 35.35533906 106.06601718 -25 ) // pt 9 (poro2b)
|
||||||
|
( 70.71067812 70.71067812 25 ) // pt 10 (poro1f)
|
||||||
|
( 35.35533906 106.06601718 25 ) // pt 11 (poro2f)
|
||||||
|
|
||||||
|
// outlet
|
||||||
|
( 141.42135624 141.42135624 -25 ) // pt 12 (out1b)
|
||||||
|
( 106.06601718 176.7766953 -25 ) // pt 13 (out2b)
|
||||||
|
( 141.42135624 141.42135624 25 ) // pt 14 (out1f)
|
||||||
|
( 106.06601718 176.7766953 25 ) // pt 15 (out2f)
|
||||||
|
);
|
||||||
|
|
||||||
|
blocks
|
||||||
|
(
|
||||||
|
// inlet block
|
||||||
|
hex (0 4 5 1 2 6 7 3)
|
||||||
|
inlet ( 15 20 20 ) simpleGrading (1 1 1)
|
||||||
|
|
||||||
|
// porosity block
|
||||||
|
hex (4 8 9 5 6 10 11 7)
|
||||||
|
porosity ( 20 20 20 ) simpleGrading (1 1 1)
|
||||||
|
|
||||||
|
// outlet block
|
||||||
|
hex (8 12 13 9 10 14 15 11)
|
||||||
|
outlet ( 20 20 20 ) simpleGrading (1 1 1)
|
||||||
|
);
|
||||||
|
|
||||||
|
edges
|
||||||
|
(
|
||||||
|
);
|
||||||
|
|
||||||
|
patches
|
||||||
|
(
|
||||||
|
// is there no way of defining all my 'defaultFaces' to be 'wall'?
|
||||||
|
wall front
|
||||||
|
(
|
||||||
|
// inlet block
|
||||||
|
(2 6 7 3)
|
||||||
|
// outlet block
|
||||||
|
(10 14 15 11)
|
||||||
|
)
|
||||||
|
|
||||||
|
wall back
|
||||||
|
(
|
||||||
|
// inlet block
|
||||||
|
(1 5 4 0)
|
||||||
|
// outlet block
|
||||||
|
(9 13 12 8)
|
||||||
|
)
|
||||||
|
|
||||||
|
wall walls
|
||||||
|
(
|
||||||
|
// inlet block
|
||||||
|
(2 0 4 6)
|
||||||
|
(7 5 1 3)
|
||||||
|
// outlet block
|
||||||
|
(10 8 12 14)
|
||||||
|
(15 13 9 11)
|
||||||
|
)
|
||||||
|
|
||||||
|
wall porosityWall
|
||||||
|
(
|
||||||
|
// porosity block
|
||||||
|
(6 10 11 7)
|
||||||
|
// porosity block
|
||||||
|
(5 9 8 4)
|
||||||
|
// porosity block
|
||||||
|
(6 4 8 10)
|
||||||
|
(11 9 5 7)
|
||||||
|
)
|
||||||
|
|
||||||
|
patch inlet
|
||||||
|
(
|
||||||
|
(3 1 0 2)
|
||||||
|
)
|
||||||
|
|
||||||
|
patch outlet
|
||||||
|
(
|
||||||
|
(15 13 12 14)
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
mergePatchPairs
|
||||||
|
(
|
||||||
|
);
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
@ -1,7 +1,7 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
cd ${0%/*} || exit 1 # Run from this directory
|
cd ${0%/*} || exit 1 # Run from this directory
|
||||||
|
|
||||||
m4 constant/polyMesh/blockMeshDict.m4 > constant/polyMesh/blockMeshDict
|
m4 system/blockMeshDict.m4 > system/blockMeshDict
|
||||||
|
|
||||||
# Source tutorial run functions
|
# Source tutorial run functions
|
||||||
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
||||||
|
|||||||
@ -6,7 +6,7 @@ cd ${0%/*} || exit 1 # Run from this directory
|
|||||||
|
|
||||||
setDecompressionTankFine()
|
setDecompressionTankFine()
|
||||||
{
|
{
|
||||||
blockMeshDict="constant/polyMesh/blockMeshDict"
|
blockMeshDict="system/blockMeshDict"
|
||||||
controlDict="system/controlDict"
|
controlDict="system/controlDict"
|
||||||
|
|
||||||
sed \
|
sed \
|
||||||
|
|||||||
@ -81,4 +81,3 @@ boundary
|
|||||||
mergePatchPairs
|
mergePatchPairs
|
||||||
(
|
(
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -8,7 +8,7 @@
|
|||||||
FoamFile
|
FoamFile
|
||||||
{
|
{
|
||||||
version 2.0;
|
version 2.0;
|
||||||
format binary;
|
format ascii;
|
||||||
class polyBoundaryMesh;
|
class polyBoundaryMesh;
|
||||||
location "constant/polyMesh";
|
location "constant/polyMesh";
|
||||||
object boundary;
|
object boundary;
|
||||||
@ -20,6 +20,7 @@ FoamFile
|
|||||||
maxY
|
maxY
|
||||||
{
|
{
|
||||||
type wall;
|
type wall;
|
||||||
|
inGroups 1(wall);
|
||||||
nFaces 300;
|
nFaces 300;
|
||||||
startFace 8300;
|
startFace 8300;
|
||||||
}
|
}
|
||||||
@ -38,18 +39,21 @@ FoamFile
|
|||||||
minY
|
minY
|
||||||
{
|
{
|
||||||
type wall;
|
type wall;
|
||||||
|
inGroups 1(wall);
|
||||||
nFaces 300;
|
nFaces 300;
|
||||||
startFace 8800;
|
startFace 8800;
|
||||||
}
|
}
|
||||||
minZ
|
minZ
|
||||||
{
|
{
|
||||||
type wall;
|
type wall;
|
||||||
|
inGroups 1(wall);
|
||||||
nFaces 300;
|
nFaces 300;
|
||||||
startFace 9100;
|
startFace 9100;
|
||||||
}
|
}
|
||||||
maxZ
|
maxZ
|
||||||
{
|
{
|
||||||
type wall;
|
type wall;
|
||||||
|
inGroups 1(wall);
|
||||||
nFaces 300;
|
nFaces 300;
|
||||||
startFace 9400;
|
startFace 9400;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -3,7 +3,7 @@ cd ${0%/*} || exit 1 # Run from this directory
|
|||||||
|
|
||||||
set -x
|
set -x
|
||||||
|
|
||||||
m4 < constant/polyMesh/blockMeshDict.m4 > constant/polyMesh/blockMeshDict
|
m4 < system/blockMeshDict.m4 > system/blockMeshDict
|
||||||
blockMesh > log.blockMesh 2>&1
|
blockMesh > log.blockMesh 2>&1
|
||||||
|
|
||||||
# ----------------------------------------------------------------- end-of-file
|
# ----------------------------------------------------------------- end-of-file
|
||||||
|
|||||||
@ -26,7 +26,7 @@ copySolutionDirs()
|
|||||||
|
|
||||||
setCavityFine()
|
setCavityFine()
|
||||||
{
|
{
|
||||||
blockMeshDict="$caseName/constant/polyMesh/blockMeshDict"
|
blockMeshDict="$caseName/system/blockMeshDict"
|
||||||
controlDict="$caseName/system/controlDict"
|
controlDict="$caseName/system/controlDict"
|
||||||
sed s/"20 20 1"/"41 41 1"/g $blockMeshDict > temp.$$
|
sed s/"20 20 1"/"41 41 1"/g $blockMeshDict > temp.$$
|
||||||
mv temp.$$ $blockMeshDict
|
mv temp.$$ $blockMeshDict
|
||||||
|
|||||||
@ -4,7 +4,7 @@ cd ${0%/*} || exit 1 # Run from this directory
|
|||||||
# Source tutorial run functions
|
# Source tutorial run functions
|
||||||
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
||||||
|
|
||||||
m4 < constant/polyMesh/blockMeshDict.m4 > constant/polyMesh/blockMeshDict
|
m4 < system/blockMeshDict.m4 > system/blockMeshDict
|
||||||
|
|
||||||
runApplication blockMesh
|
runApplication blockMesh
|
||||||
|
|
||||||
|
|||||||
@ -0,0 +1 @@
|
|||||||
|
../../angledDuctImplicit/system/blockMeshDict.m4
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user