CFD Online Discussion Forums

CFD Online Discussion Forums (https://www.cfd-online.com/Forums/)
-   OpenFOAM Running, Solving & CFD (https://www.cfd-online.com/Forums/openfoam-solving/)
-   -   Unexpected cyclic BC restuls (https://www.cfd-online.com/Forums/openfoam-solving/199286-unexpected-cyclic-bc-restuls.html)

cyln March 2, 2018 09:38

Unexpected cyclic BC restuls
 
1 Attachment(s)
Hello, I have a computational domain which is a quarter cylinder. On the sides, I defined cyclic (periodic) BCs. I have run a transient simulation, however, on the cyclic interfaces (boundaries), there is an unexpected gradient on my flow parameters such as velocity. A screenshot of velocity contour plot is attached.

I have assigned the BCs are as follows:

0/p:

Code:

    SIDE11
    {
        type            cyclic;
    }

    SIDE22
    {
        type            cyclic;
    }

0/U:

Code:

    SIDE11
    {
        type            cyclic;
    }

    SIDE22
    {
        type            cyclic;
    }

constant/polyMesh/boundary :

Code:

    SIDE11
    {
        type            cyclic;
        inGroups        1(cyclic);
        nFaces          54131;
        startFace      16644366;
        matchTolerance  0.001;
        transform      rotational;
        neighbourPatch  SIDE22;
        rotationAxis    (1 0 0);
        rotationCentre  (0 0 0);
    }
    SIDE22
    {
        type            cyclic;
        inGroups        1(cyclic);
        nFaces          54131;
        startFace      16698497;
        matchTolerance  0.001;
        transform      rotational;
        neighbourPatch  SIDE11;
        rotationAxis    (1 0 0);
        rotationCentre  (0 0 0);
    }


Could anyone please tell me why I get such a gradient gradient very next to the cyclic interface?


Cheers

piu58 March 2, 2018 15:29

It looks if there is a wall function in action.

cyln March 2, 2018 16:15

Hello Uwe,

Thanks for your reply. This is a laminar simulation, so there are only U and p within the 0 directory. The boundary conditions for the cyclic boundaries are as above. I do no use any wall function in the simulation.

I just cannot find the reason behind this problem :/

Thanks

cyln March 3, 2018 13:57

Does anyone have another suggestion?


All times are GMT -4. The time now is 10:44.