CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > OpenFOAM > OpenFOAM Running, Solving & CFD

explicitPorositySource in multiphaseEulerFoam

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   March 24, 2021, 11:49
Default explicitPorositySource in multiphaseEulerFoam
  #1
New Member
 
Mayur Sathe
Join Date: Jul 2012
Location: Chicago, USA
Posts: 2
Rep Power: 0
mayursathe is on a distinguished road
I am trying to model flow distribution by a porous plate in the pipe. I was basing my case on the angleDuct fvoptions file.
My geometry is a larger cylindrical pipe (0.1 m dia, 0.6 m length; with a small cocentric jet inlet at y=0). the baffle plate should spread the velocity profile and make the flow uniform across the cross section.

I have defined a cell zone using topoSet as follows. the cell zone occupied the full cross section of pipe, and ran from y=0.2 - 0.25.
Code:
actions
(
     {
        name    porousBaffle1;
        type    cellSet;
        action  new;
        source   boxToCell;
        sourceInfo
        {
        box (-0.06 0.2 -0.06) (0.06 0.25 0.06);
        }
     }
     {
        name    porousBaffle1;
        type    cellZoneSet;
        action  new;
        source  setToCellZone;
        sourceInfo
        {
        set     porousBaffle1;
        }
     }
);
And I have added an fvOptions file, with the following source term definition:
Code:
porosity1
{
    type          explicitPorositySource;
    active        true; //yes;

    explicitPorositySourceCoeffs
    {
        selectionMode cellZone;
cellZone      porousBaffle1;
        type fixedCoeff;

        fixedCoeffCoeffs
        {
              alpha    alpha [0 0 -1 0 0 0 0] (5000 5000 5000); //linear term
              beta     beta [0 -1 0 0 0 0 0] (1000 1000 1000); //squared term
              coordinateSystem
              {
        type cartesian;
        origin (0 0.2 0);
        rho 1.2;
        coordinateRotation
                 {  
            type axesRotation;
            e1    (1 0 0);
            e2    (0 1 0);
                //e3    (0 0 1);
           }
              }
        }
    }
}
As shown in the attached image, the jet moves right through the porous zone. The pressure drop from the porous zone should block it; but looks like the explicitPorositySource is not working at all. I tried reading many forum posts but no mention of using porous zone for bubbly flow.
Can you please help me resolve this?
Attached Images
File Type: jpg single_jet_multiphase.JPG (36.9 KB, 23 views)
mayursathe is offline   Reply With Quote

Reply

Tags
explicitporositysource, fvoptions, multiphaseeulerfoam


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
volume fraction problem in multiphaseEulerFoam vishalgarg474 OpenFOAM Running, Solving & CFD 2 September 15, 2021 16:19
multiphaseEulerFoam: How to specify the continuous/dispersed phase nov.t OpenFOAM Running, Solving & CFD 20 March 19, 2021 06:58
multiphaseinterfoam and multiphaseeulerfoam maybee OpenFOAM Programming & Development 21 September 2, 2018 09:30
multiphaseInterFoam vs multiphaseEulerFoam rahulksoni OpenFOAM 0 August 11, 2017 02:14
Adding Boussinesq Approximation to multiphaseEulerFoam? dschmidt OpenFOAM Programming & Development 1 January 16, 2017 16:40


All times are GMT -4. The time now is 14:49.