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

TwoPhaseEulerFoam - Bubble diameter size Problem

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   November 16, 2015, 05:50
Default TwoPhaseEulerFoam - Bubble diameter size Problem
  #1
Senior Member
 
Join Date: Aug 2014
Location: Germany
Posts: 292
Rep Power: 13
BlnPhoenix is on a distinguished road
Hello,

i succesfully adopted the laminar bubble column tutorial for my geometry. As a first step i neglected some special boundary conditions i need to consider later on.

The case runs fine with default bubbles diameter of 3e-3 m. However if i lower the diameter to my requirements of 5e-5 m the simulation results are not meaningful, in some trys the simulation even crashes.

So my question is:

1) Are there limitations to the bubble size in twoPhaseEulerFoam?
2) What could cause the crashes for a bubble size of 5e-05? Is it the mesh?


Thank you for your ideas.
BlnPhoenix is offline   Reply With Quote

Old   November 19, 2015, 14:17
Default
  #2
Senior Member
 
Join Date: Aug 2014
Location: Germany
Posts: 292
Rep Power: 13
BlnPhoenix is on a distinguished road
Any ideas?

My cases still crashes after lowering the air diameter from 3e-3 to 5e-5 m.
BlnPhoenix is offline   Reply With Quote

Old   September 4, 2019, 14:21
Default
  #3
Member
 
FaRa
Join Date: Jul 2019
Posts: 33
Rep Power: 6
Fahmida is on a distinguished road
Hello!!! I am facing kind of similar problem. Did you solve this?
Fahmida is offline   Reply With Quote

Old   September 5, 2019, 03:46
Default
  #4
Senior Member
 
Join Date: Aug 2014
Location: Germany
Posts: 292
Rep Power: 13
BlnPhoenix is on a distinguished road
Hi,

i think in the end it wasn't really a problem with bubble diameter, more a problem of boundary conditions and setup...
Maybe you can post your setup ....so someone can help...
BlnPhoenix is offline   Reply With Quote

Old   September 5, 2019, 15:22
Default
  #5
Member
 
FaRa
Join Date: Jul 2019
Posts: 33
Rep Power: 6
Fahmida is on a distinguished road
Thank you so much for your reply. I have been suffering with this problem for so long.

First of all, I wanted to simulate nucleate boiling in 3D with InterThermalPhaseChangeFoam. Although this not the solver which you have used, but I thought the solution can be similar.
I have successfully created the bubble and the bubble moves upward. But it does not increase its size. It should grow up a little bit and then flow upward. So, any idea, why this is happening would be appreciated.

Here, I would like to mention that I have changed the Evaporation Threshold by increasing upto .5 and dicreasing upto .10 and nothing actually happens. I have also changed the mesh but also it did not come out successfully.

I have attached the paraview file and here is the blockMesh file:

Code:
convertToMeters 1;

vertices
(
    (0 0 0)
    (0.031 0 0)
    (0.031 0.031 0)
    (0 0.031 0)
    (0 0 0.031)
    (0.031 0 0.031)
    (0.031 0.031 0.031)
    (0 0.031 0.031)
);

blocks
(
     hex (0 1 2 3 4 5 6 7) (40 40 40) simpleGrading (1 1 1)
);

edges
(
);

boundary
(
    bottom
    {
        type wall;
        faces
        (
            (1 5 4 0)
        );
    }
    outlet
    {
        type patch;
        faces
        (
            (3 7 6 2)
        );
    }
    walls
    {
        type wall;
        faces
        (
            (0 4 7 3)
            (2 6 5 1)
            (0 1 2 3)
            (4 5 6 7)
        );
    }
);

mergePatchPairs
(
);
Here is the toposetDict file:

Code:
actions
(
    {
        name c0;
        type cellSet;
        action new;
        source sphereToCell;
        sourceInfo
        {
            centre (0.0155 0 0.0155);
            radius 0.001;
        }
    }

    {
        name c0;
        type cellSet;
        action delete;
        source boxToCell;
        sourceInfo
        {
            
                  box (0.0145 -0.001 0.0145) (0.0165 0 0.0165);
        }
    }

);

here is the setFieldDict :

Code:
defaultFieldValues
(
        volScalarFieldValue alpha1 0
        volScalarFieldValue T 559.95
        volVectorFieldValue U (0 0 0)
);

regions
(


   boxToCell
    {
        box (0 0 0) (0.031 0.026 0.031);
        fieldValues
        (
            volScalarFieldValue alpha1 1
            volScalarFieldValue T 559.95
            volVectorFieldValue U (0 0 0)
        );
    }
   
    cellToCell
    {
        set c0;

        fieldValues
        (
            volScalarFieldValue alpha1 0
            volScalarFieldValue T 559.95
            volVectorFieldValue U (0 0 0)
        );
    }
);

Regards,
Fahmida
Attached Files
File Type: zip anim.zip (116.3 KB, 12 views)
Fahmida is offline   Reply With Quote

Old   September 6, 2019, 06:03
Default
  #6
Senior Member
 
Join Date: Aug 2014
Location: Germany
Posts: 292
Rep Power: 13
BlnPhoenix is on a distinguished road
Oh well, i'm not familiar with this problem to be honest . :/
Have you checked papers for similiar simulations?
BlnPhoenix is offline   Reply With Quote

Old   September 6, 2019, 15:39
Default
  #7
Member
 
FaRa
Join Date: Jul 2019
Posts: 33
Rep Power: 6
Fahmida is on a distinguished road
Yes I checked some papers. But I could not understand which thing was responsible for this to happen. May be I have to understand very well how the governing equations work ?
Anyway thank you so much for your response.
Fahmida is offline   Reply With Quote

Old   September 9, 2019, 11:21
Default
  #8
Senior Member
 
Join Date: Aug 2014
Location: Germany
Posts: 292
Rep Power: 13
BlnPhoenix is on a distinguished road
one thing just popped up in my head re-reading:
when you say it should grow a "little" have you established a sufficient grid size, so that the growing can be captured by the mesh?

maybe you can describe how the growing process should work... nucleate boiling is, if i'm not mistaken, the creation of small bubbles.. which than coalesce with the bigger bubble.. or is it a different process?

Last edited by BlnPhoenix; September 10, 2019 at 03:47.
BlnPhoenix is offline   Reply With Quote

Old   September 17, 2019, 15:59
Default
  #9
Member
 
FaRa
Join Date: Jul 2019
Posts: 33
Rep Power: 6
Fahmida is on a distinguished road
Sorry for the late reply.

Yes I also think the issue can be the grid size. That's why I have tried with 2D and succeed with mesh 150x150 but after increasing the mesh upto 120x120x120 in 3D, nothing actually changes.
My updated case files are uploaded in the following thread. You can check there so we can discuss further.

Bubble is not increasing in size in Nucleate boiling

Thank you
Fahmida is offline   Reply With Quote

Reply


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
Pressure dissipation problem in bubble simulation (Riemann problem) ndabir CFX 9 June 4, 2015 16:48
Pressure dissipation problem in bubble simulation (Riemann problem) ndabir FLUENT 0 June 3, 2015 20:16
TwoPhaseEulerFoam high particle diameter problem OF2.1.1 mwaqas OpenFOAM Running, Solving & CFD 0 May 24, 2015 08:45
bubble diameter distribution emrahdeniz FLUENT 0 September 27, 2010 07:03
Query on VOF for Bubble rise Vamsi Main CFD Forum 0 December 22, 2005 00:02


All times are GMT -4. The time now is 21:37.