https://linen.dev logo
Hi everyone! I want to use the `inletOutlet` BC at...
# incompressible
t
Hi everyone! I want to use the
inletOutlet
BC at the outlet of my domain but the profile is nonuniform at the inlet. When I configure the patch in the following way and
decomposePar
, I got an error. Do you have an idea in mind why this happen? Thank for your insight. The inlet patch work just fine.
Copy code
#include "IC/InletU"
Outlet
    {
    type            inletOutlet;
        inletValue      nonuniform $UInlet;
        value           uniform (0 0 0);
    }
    
Inlet
    {        
    type            fixedValue;
    value            nonuniform $UInlet;
    }