Skip to content
Permalink
a3e8861bc1
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
111 lines (102 sloc) 1.86 KB
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 5 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object blockMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
convertToMeters 1;
xDimP 0.04;
yDimP 2e-6;
zDimP 2e-6;
xDimM -0.04;
yDimM -2e-6;
zDimM -2e-6;
vertices
(
($xDimM $yDimM $zDimM)
($xDimP $yDimM $zDimM)
($xDimP $yDimP $zDimM)
($xDimM $yDimP $zDimM)
($xDimM $yDimM $zDimP)
($xDimP $yDimM $zDimP)
($xDimP $yDimP $zDimP)
($xDimM $yDimP $zDimP)
);
blocks
(
hex (0 1 2 3 4 5 6 7)
(20000 1 1)
simpleGrading
(
1
1
1
)
);
edges
(
);
boundary
(
minX
{
type patch;
faces
(
(0 4 7 3)
);
}
maxX
{
type patch;
faces
(
(2 6 5 1)
);
}
minY
{
type empty;
faces
(
(1 5 4 0)
);
}
maxY
{
type empty;
faces
(
(3 7 6 2)
);
}
minZ
{
type empty;
faces
(
(0 3 2 1)
);
}
maxZ
{
type empty;
faces
(
(4 5 6 7)
);
}
);
mergePatchPairs
(
);
// ************************************************************************* //