[Nek5000-users] convert openfoam mesh to nek5000

nek5000-users at lists.mcs.anl.gov nek5000-users at lists.mcs.anl.gov
Tue Jan 3 05:57:20 CST 2017


Hi,

thanks  for your reply. What confuses me a lot is why both types of inlet
and outlet in openfoam file were changed to be v and O, since they are same
patch type.


wall
    {
        type            wall;
        nFaces          2400;
        startFace       88300;
    }
    inlet
    {
        type            *patch;*
        nFaces          500;
        startFace       90700;
    }
    outlet
    {
        type            *patch;*
        nFaces          500;
        startFace       91200;
    }

Because foamToNek will read the boundary condition type in this file.
Please change the boundary file to:

  wall
    {
        type            W;
        nFaces          2400;
        startFace       88300
    }
    inlet
    {
        type            *v;*
        nFaces          500;
        startFace       90700;
    }
    outlet
    {
        type            *O;*
        nFaces          500;
        startFace       91200;
    }


Kind regards,


Jian
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.mcs.anl.gov/pipermail/nek5000-users/attachments/20170103/33866263/attachment.html>


More information about the Nek5000-users mailing list