Porous Baffle bug

A subforum specific to the development of the OpenFoam-based workbenches ( Cfd https://github.com/qingfengxia/Cfd and CfdOF https://github.com/jaheyns/CfdOF )

Moderator: oliveroxtoby

Post Reply
M4mina
Posts: 8
Joined: Sat Apr 09, 2022 4:48 am

Porous Baffle bug

Post by M4mina »

I tried to add a baffle to a K-OmegaSST model, it gave an error even i was following the tutorial.
after more investigation, I found that the nut field was written without the _slave and _master cyclic

Code: Select all

 baffle_master
    {
        type            cyclic;
    }
    baffle_slave
    {
        type            cyclic;
    }
those lines were missed in the case\0 U and nut files.
After adding those lines, it worked.
User avatar
oliveroxtoby
Posts: 837
Joined: Fri Dec 23, 2016 9:43 am
Location: South Africa

Re: Porous Baffle bug

Post by oliveroxtoby »

M4mina wrote: Fri Oct 21, 2022 9:17 am I tried to add a baffle to a K-OmegaSST model, it gave an error even i was following the tutorial.
after more investigation, I found that the nut field was written without the _slave and _master cyclic

Code: Select all

 baffle_master
    {
        type            cyclic;
    }
    baffle_slave
    {
        type            cyclic;
    }
those lines were missed in the case\0 U and nut files.
After adding those lines, it worked.
Quite right, thanks for reporting! It should be working now.
M4mina
Posts: 8
Joined: Sat Apr 09, 2022 4:48 am

Re: Porous Baffle bug

Post by M4mina »

Thank you :)
Post Reply