Update geometryDict

Top gate was replaced from wall to cylinder.
**There is an error for bottom Gate that i couldn't solve it.**
This commit is contained in:
Omid Khosravi 2023-03-30 22:11:30 +04:30
parent 7e216f4cac
commit 861a7a7b5d
1 changed files with 19 additions and 15 deletions

View File

@ -23,15 +23,19 @@ rotatingAxisMotionInfo
} }
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 solidProperty; material solidProperty;
// motion component name // motion component name
@ -53,7 +57,7 @@ surfaces
// number of divisions // number of divisions
resolution 36; resolution 36;
// material name of this wall // material name of this wall
material solidProperty; material prop1;
// motion component name // motion component name
motion axisOfRotation; motion axisOfRotation;
} }
@ -73,7 +77,7 @@ surfaces
// number of divisions // number of divisions
resolution 36; resolution 36;
// material name of this wall // material name of this wall
material solidProperty; material prop1;
// motion component name // motion component name
motion axisOfRotation; motion axisOfRotation;
} }
@ -93,12 +97,12 @@ surfaces
// number of divisions // number of divisions
resolution 36; resolution 36;
// material name of this wall // material name of this wall
material solidProperty; material prop1;
// motion component name // motion component name
motion axisOfRotation; motion axisOfRotation;
} }
coneShellbottom coneShelldown
{ {
// type of the wall // type of the wall
type cylinderWall; type cylinderWall;
@ -113,7 +117,7 @@ surfaces
// number of divisions // number of divisions
resolution 36; resolution 36;
// material name of this wall // material name of this wall
material solidProperty; material prop1;
// motion component name // motion component name
motion axisOfRotation; motion axisOfRotation;
} }
@ -136,18 +140,18 @@ surfaces
// number of divisions // number of divisions
resolution 36; resolution 36;
// material name of this wall // material name of this wall
material solidProperty; material prop1;
// 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);
p2 (-0.05 0.05 0); p2 (-0.05 0.05 0);
p3 ( 0.05 0.05 0); p3 ( 0.05 0.05 0);
p4 (0.05 -0.05 0); p4 (0.05 -0.05 0);
material solidProperty; material prop1;
motion axisOfRotation; motion axisOfRotation;
} }