Update ReadMe toteBlender

geometry code block was fixed.
This commit is contained in:
Omid Khosravi 2023-03-30 22:14:48 +04:30
parent 861a7a7b5d
commit 519ae70905
1 changed files with 14 additions and 10 deletions

View File

@ -104,17 +104,21 @@ In the `settings/geometryDict` file, the geometry and axis of rotation is define
```C++ ```C++
surfaces surfaces
{ {
topGate
topGate topGate
{ {
// type of wall // type of wall
type planeWall; type cylinderWall;
// coords of wall // begin point of cylinder axis
p1 (-0.05 -0.05 0.3); p1 (0.0 0.0 0.299);
p2 (-0.05 0.05 0.3); // end point of cylinder axis
p3 ( 0.05 0.05 0.3); p2 (0.0 0.0 0.3);
p4 (0.05 -0.05 0.3); // radius at p1
radius1 0.03;
// radius at p2
radius2 0.0001;
// material of wall // material of wall
material prop1; material solidProperty;
// motion component name // motion component name
motion axisOfRotation; motion axisOfRotation;
} }
@ -179,7 +183,7 @@ surfaces
motion axisOfRotation; motion axisOfRotation;
} }
coneShellbottom coneShelldown
{ {
// type of the wall // type of the wall
type cylinderWall; type cylinderWall;
@ -221,7 +225,7 @@ surfaces
// motion component name // motion component name
motion axisOfRotation; motion axisOfRotation;
} }
bottomGate exitGate
{ {
type planeWall; type planeWall;
p1 (-0.05 -0.05 0); p1 (-0.05 -0.05 0);