This repository has been archived on 2023-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
foam-extend4.1-coherent-io/tutorials/electromagnetics/electrostaticFoam/chargedWire/constant/polyMesh/blockMeshDict

120 lines
2.6 KiB
Text
Raw Normal View History

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
2013-12-11 16:09:41 +00:00
| \\ / F ield | foam-extend: Open Source CFD |
2015-05-17 13:55:59 +00:00
| \\ / O peration | Version: 3.2 |
| \\ / A nd | Web: http://www.foam-extend.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object blockMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
convertToMeters 1;
2010-11-24 20:48:09 +00:00
vertices
(
(0.001 0 0)
(0.038 0 0)
(0.076 0 0)
(0.076 0.02687 0)
(0.02687 0.02687 0)
(0.0007071 0.0007071 0)
(0.076 0.114 0)
(0.02687 0.114 0)
(0 0.114 0)
(0 0.038 0)
(0 0.001 0)
2013-08-14 14:29:24 +00:00
(0.001 0 0.01)
(0.038 0 0.01)
(0.076 0 0.01)
(0.076 0.02687 0.01)
(0.02687 0.02687 0.01)
(0.0007071 0.0007071 0.01)
(0.076 0.114 0.01)
(0.02687 0.114 0.01)
(0 0.114 0.01)
(0 0.038 0.01)
(0 0.001 0.01)
);
2010-11-24 20:48:09 +00:00
blocks
(
hex (5 4 9 10 16 15 20 21) (60 30 1) simpleGrading (5 1 1)
hex (0 1 4 5 11 12 15 16) (60 30 1) simpleGrading (5 1 1)
hex (1 2 3 4 12 13 14 15) (50 30 1) simpleGrading (1 1 1)
hex (4 3 6 7 15 14 17 18) (50 50 1) simpleGrading (1 1 1)
hex (9 4 7 8 20 15 18 19) (30 50 1) simpleGrading (1 1 1)
);
2010-11-24 20:48:09 +00:00
edges
(
arc 0 5 (0.00092387 0.00038268 0)
arc 5 10 (0.00038268 0.00092387 0)
arc 1 4 (0.0351074 0.0145419 0)
arc 4 9 (0.0145419 0.0351074 0)
2013-08-14 14:29:24 +00:00
arc 11 16 (0.00092387 0.00038268 0.01)
arc 16 21 (0.00038268 0.00092387 0.01)
arc 12 15 (0.0351074 0.0145419 0.01)
arc 15 20 (0.0145419 0.0351074 0.01)
);
boundary
(
left
{
type symmetryPlane;
faces
(
(8 9 20 19)
(9 10 21 20)
);
}
right
{
type symmetryPlane;
faces
(
(2 3 14 13)
(3 6 17 14)
);
}
down
{
type symmetryPlane;
faces
(
(0 1 12 11)
(1 2 13 12)
);
}
up
{
type patch;
faces
(
(7 8 19 18)
(6 7 18 17)
);
}
hole
{
type patch;
faces
(
(10 5 16 21)
(5 0 11 16)
);
}
);
mergePatchPairs
(
);
// ************************************************************************* //