mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
symmetryPlane: add symmetryPlane as a special type of symmetry condition applied to a single plane
The standard/previous general symmetry type is now named symmetry
both in class and lookup name for consistency. The rigorous
symmetryPlane type is needed for moving-mesh cases in which the
motion it constrained by one or two planes.
This commit is contained in:
@ -26,7 +26,7 @@ boundaryField
|
||||
value uniform 300;
|
||||
}
|
||||
|
||||
entrance
|
||||
"entrance.*"
|
||||
{
|
||||
type symmetryPlane;
|
||||
}
|
||||
|
||||
@ -26,7 +26,7 @@ boundaryField
|
||||
value uniform (1936 0 0);
|
||||
}
|
||||
|
||||
entrance
|
||||
"entrance.*"
|
||||
{
|
||||
type symmetryPlane;
|
||||
}
|
||||
|
||||
@ -25,7 +25,7 @@ boundaryField
|
||||
type zeroGradient;
|
||||
}
|
||||
|
||||
entrance
|
||||
"entrance.*"
|
||||
{
|
||||
type symmetryPlane;
|
||||
}
|
||||
|
||||
@ -26,7 +26,7 @@ boundaryField
|
||||
value uniform (0 0 0);
|
||||
}
|
||||
|
||||
entrance
|
||||
"entrance.*"
|
||||
{
|
||||
type symmetryPlane;
|
||||
}
|
||||
|
||||
@ -25,7 +25,7 @@ boundaryField
|
||||
type zeroGradient;
|
||||
}
|
||||
|
||||
entrance
|
||||
"entrance.*"
|
||||
{
|
||||
type symmetryPlane;
|
||||
}
|
||||
|
||||
@ -25,7 +25,7 @@ boundaryField
|
||||
type zeroGradient;
|
||||
}
|
||||
|
||||
entrance
|
||||
"entrance.*"
|
||||
{
|
||||
type symmetryPlane;
|
||||
}
|
||||
|
||||
@ -25,7 +25,7 @@ boundaryField
|
||||
type zeroGradient;
|
||||
}
|
||||
|
||||
entrance
|
||||
"entrance.*"
|
||||
{
|
||||
type symmetryPlane;
|
||||
}
|
||||
|
||||
@ -25,7 +25,7 @@ boundaryField
|
||||
type zeroGradient;
|
||||
}
|
||||
|
||||
entrance
|
||||
"entrance.*"
|
||||
{
|
||||
type symmetryPlane;
|
||||
}
|
||||
|
||||
@ -27,7 +27,7 @@ boundaryField
|
||||
|
||||
}
|
||||
|
||||
entrance
|
||||
"entrance.*"
|
||||
{
|
||||
type symmetryPlane;
|
||||
}
|
||||
|
||||
@ -25,7 +25,7 @@ boundaryField
|
||||
type zeroGradient;
|
||||
}
|
||||
|
||||
entrance
|
||||
"entrance.*"
|
||||
{
|
||||
type symmetryPlane;
|
||||
}
|
||||
|
||||
@ -25,7 +25,7 @@ boundaryField
|
||||
type zeroGradient;
|
||||
}
|
||||
|
||||
entrance
|
||||
"entrance.*"
|
||||
{
|
||||
type symmetryPlane;
|
||||
}
|
||||
|
||||
@ -56,12 +56,20 @@ boundary
|
||||
);
|
||||
}
|
||||
|
||||
entrance
|
||||
entrance1
|
||||
{
|
||||
type symmetryPlane;
|
||||
faces
|
||||
(
|
||||
(0 1 5 4)
|
||||
);
|
||||
}
|
||||
|
||||
entrance2
|
||||
{
|
||||
type symmetryPlane;
|
||||
faces
|
||||
(
|
||||
(0 3 2 1)
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user