CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > OpenFOAM > OpenFOAM Bugs

Reporting bugs for pimple loop in VOF solvers

Register Blogs Members List Search Today's Posts Mark Forums Read

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   May 25, 2016, 23:37
Default Reporting bugs for pimple loop in VOF solvers
  #1
Member
 
Join Date: Jul 2012
Posts: 67
Rep Power: 13
Carlen is on a distinguished road
Hi foamers,

I would like to report a bug with regard to the pimple implementation in compressibleInterFoam and similar solvers.
Code:
#include "alphaEqnsSubCycle.H"
            // correct interface on first PIMPLE corrector
            if (pimple.corr() == 1)
            {
                interface.correct();
            }
should be replaced with
Code:
// correct interface on first PIMPLE corrector
            if (pimple.corr() == 1)
            {
                #include "alphaEqnsSubCycle.H"
                interface.correct();
            }
This way the number of iteration for updating interface is consistent with number of iteration for solving alphaEqn. In this case, they are only updated in the first pimple loop. I have tested both implementation that the second one is much much more stable.

Hope this helps.
Carlen is offline   Reply With Quote

Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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
Reporting bugs for FOAM-Extend and 1.6-ext wyldckat OpenFOAM Bugs 2 July 21, 2019 22:16
[Gmsh] Problem with Gmsh nishant_hull OpenFOAM Meshing & Mesh Conversion 23 August 5, 2015 03:09
p_rgh in VOF solvers in version 1.7 thekay OpenFOAM Running, Solving & CFD 8 June 10, 2012 15:13
Reporting OpenFOAM bugs mattijs OpenFOAM Bugs 0 October 15, 2010 06:09
NACA0012 geometry/design software needed Franny Main CFD Forum 13 July 7, 2007 16:57


All times are GMT -4. The time now is 07:54.