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

interFoam (HELYX-OS) pressure boundary conditions

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   May 11, 2016, 04:49
Default interFoam (HELYX-OS) pressure boundary conditions
  #1
SFr
New Member
 
Join Date: May 2016
Posts: 19
Rep Power: 9
SFr is on a distinguished road
Hello:

I’m using OpenFOAM (2.4.0) with interFoam via the HELYX-OS GUI (version 2.3.1) in Linux Ubuntu 14.04.

A summary of my problem is that when I use pressure boundary conditions, I get what seem like surprisingly low velocities compared to another code. I don't have gravity in my problem, so I don't think this discrepancy can be due to hydrostatic pressure.


I want to model two-phase fluid flow out of a tank. The fluid leaves the tank through a narrower outlet. There are two layers of fluid. An overview of the geometry is attached.

I need to use a pressure boundary condition at the bottom of the tank. As a first step, I have tried to compare results with results from a simple example calculated using another code (an older code based on Galerkin finite elements), to check that everything is in order.

The example is as simple as possible: incompressible flow, no gravity, the same density and viscosity values in the two fluid layers (1 kg m-3 and 1 Pa s, respectively; see geometry diagram). I’m not experienced in fluid dynamics or OpenFOAM, so I chose these simple inputs to avoid any possible misunderstandings on my part about p_rgh, etc.

Results for a velocity inlet boundary condition are pretty similar for the two codes. However, there is a major difference for a pressure inlet boundary condition. The other code calculates that the interface between the two fluid layers moves significantly faster compared to interFoam. If I want the interface to move at a similar velocity in the two codes, I have to decrease the inlet pressure about three orders of magnitude in the other code, which seems extreme.

I have tried all combinations of pressure boundary conditions at the inlet and outlet that are relevant to pressure and available in HELYX-OS (e.g., total pressure or fixed value at the inlet with total pressure, fixed value, or zero-gradient at the outlet; alpha1/phase fraction at inlet of “Inlet Outlet” or fixed value, alpha1/phase fraction at outlet of “Inlet Outlet” or fixed value or zero gradient). However, no matter which combination I use, there is no significant difference in the calculated velocities. An example of what I have tried is:

Inlet:
alpha1/Phase Fraction = Inlet Outlet, inlet value 1
U = Pressure Inlet Outlet Velocity

p_rgh = Fixed Value, pressure 10 m2 s-2

Outlet:
alpha1 = Zero Gradient

U = Pressure Inlet Outlet Velocity
p_rgh = Fixed Value, 0.0 m2 s-2


I created my geometry in Blender and have ensured that units are in meters.

I have not found any existing examples/benchmarks that use interFoam with pressure boundary conditions. Also, I have seen a few comments in posts here that allude to possible complications with pressure boundary conditions and interFoam. I would be very surprised if the problem is with interFoam and is not some simple mistake I'm making somewhere, but I don't see where I'm going wrong. Over the last couple of months, I have looked at the other code and even asked its developer to take a look at my problem (in case the issue is with the other code and not OpenFOAM/HELYX-OS/interFoam), but we have not spotted anything that seems problematic. Does anyone have any hints or knowledge about possible pressure boundary condition problems in interFoam? Or anything else that might be the cause of my problem? Are there any other solvers that have been benchmarked for two-phase flow that I could try instead?

As a side question, I understand that pressure boundary conditions must be entered as pressure/density for interFoam. I don’t understand how this would work for a layered fluid in which the two fluids have distinct densities. What would be the value of density for determining the pressure? For my current very-simple comparison, I avoid this issue by using a value of 1 kg m-3 for the density of both fluid phases.

Thank you very much.

Attached Files
File Type: pdf TestGeometry copy.pdf (27.0 KB, 79 views)

Last edited by SFr; May 27, 2016 at 07:57. Reason: Clarification. I added a summary in case people are getting scared off answering my question because of all the detail/text.
SFr is offline   Reply With Quote

Old   May 12, 2016, 22:32
Default
  #2
Senior Member
 
Paulo Vatavuk
Join Date: Mar 2009
Location: Campinas, Brasil
Posts: 196
Rep Power: 17
vatavuk is on a distinguished road
HI SFr,

InterFoam uses pressure not p/rho like the incompressible solvers, but in your case this makes no difference because you are using rho=1.
The variable p_rgh is the pressure without the hydrostatic component. The other code that you are testing uses the same kind of pressure? If not, you should add the hydrostatic component to compare the pressures.

Best regards,
Paulo
vatavuk is offline   Reply With Quote

Old   May 13, 2016, 03:02
Default
  #3
SFr
New Member
 
Join Date: May 2016
Posts: 19
Rep Power: 9
SFr is on a distinguished road
Hi vatavuk:

Thanks very much for your reply.

My apologies if I'm missing something obvious here... I have gravity switched off in both codes. So my reasoning was that there shouldn't be a hydrostatic component. The pressure difference between the inlet and outlet should be the only driving force for flow.

In Helyx-OS, the pressure is in units of P/rho and if I recall correctly, all the forum posts I've seen refer to P/rho. From the code, I also get the impression it's P/rho. I'll take another look because there's clearly something I'm not understanding.

Thank you.
SFr is offline   Reply With Quote

Old   May 13, 2016, 08:27
Default
  #4
Senior Member
 
Paulo Vatavuk
Join Date: Mar 2009
Location: Campinas, Brasil
Posts: 196
Rep Power: 17
vatavuk is on a distinguished road
Hi SFr,

In the beginning of the p_rgh file it says:

dimensions [1 -1 -2 0 0 0 0];

If it were pressure/rho it would be:

dimensions [0 2 -2 0 0 0 0];

Just to confirm, did you switch gravity off by modifying the g file in the constant directory?

Best Regards,
Paulo
vatavuk is offline   Reply With Quote

Old   May 14, 2016, 06:13
Default
  #5
SFr
New Member
 
Join Date: May 2016
Posts: 19
Rep Power: 9
SFr is on a distinguished road
Hi vatavuk:

You're right. In my "p_rgh" file, there is:
Code:
dimensions [1 -1 -2 0 0 0 0];
In HELYX-OS, pressure boundary condition values must be entered in units of pressure/density. But if I understand you correctly, I can enter my pressure boundary condition values directly in the 0/p_rgh file as:

Code:
    inlet
    {
        type fixedValue;
        value uniform myValue;
    }
I checked the "g" file in the "constant" directory. It says this:
Code:
dimensions [0 1 -2 0 0 0 0];
value (0.0 0.0 0.0);
I'm guessing that "value (0.0 0.0 0.0);" means that gravity is switched off.

So thank you very much for your advice. Unfortunately, I'm still not seeing what I'm doing to get such low velocities. I found this discussion here at cfd-online:
http://www.cfd-online.com/Forums/ope...interfoam.html

It got me wondering if I really do understand what p_rgh is. I looked in the pEqn.H file for interFoam and it says this at the bottom:
Code:
p == p_rgh + rho*gh;

    if (p_rgh.needReference())
    {
        p += dimensionedScalar
        (
            "p",
            p.dimensions(),
            pRefValue - getRefCellValue(p, pRefCell)
        );
        p_rgh = p - rho*gh;
    }
I'm confused by this. From the forum link, p_rgh should mean
Code:
p_rgh = p - rho*gh;
. Is this right? Because it sounds like there's a condition in the pEqn.H file where it can be
Code:
p_rgh = p + rho*gh;
.

In my simple example, I just need a pressure of 10 Pa at the bottom of my tank and 0 Pa at the top, with no hydrostatic pressure. In my 0/p_rgh file, I have represented this as:
Code:
    inlet
    {
        type fixedValue;
        value uniform 10.0;
    }

    top
    {
        type fixedValue;
        value uniform 0.0;
    }
If I have not made a mistake, I'd love to know if anyone can think of anything else that might be slowing down my velocities. Thanks very much.

Last edited by SFr; May 16, 2016 at 17:10. Reason: Updated
SFr is offline   Reply With Quote

Old   May 19, 2016, 11:20
Default
  #6
Senior Member
 
Paulo Vatavuk
Join Date: Mar 2009
Location: Campinas, Brasil
Posts: 196
Rep Power: 17
vatavuk is on a distinguished road
Hi SFr,

It seems to me that the boundary conditions for p_rgh are correct.
You mentioned that, when you used velocity inlet boundary conditions, the results were similar on both codes. In these simulations, what happened to the pressures, were they also similar?

Best Regards,
Paulo
vatavuk is offline   Reply With Quote

Old   May 27, 2016, 07:57
Default
  #7
SFr
New Member
 
Join Date: May 2016
Posts: 19
Rep Power: 9
SFr is on a distinguished road
Hi vatavuk:

Thanks very much for confirming that I'm not somehow misunderstanding p_rgh.

The other code is based on Galerkin finite elements with a "perturbation method" (penalty formulation). It eliminates the pressure from the continuity and momentum equations. So there's no pressure output that I can look at.

I'm pretty stuck at this point and have been for a couple of months. Thanks for your help!
SFr is offline   Reply With Quote

Old   June 11, 2016, 09:53
Default
  #8
SFr
New Member
 
Join Date: May 2016
Posts: 19
Rep Power: 9
SFr is on a distinguished road
This problem has been solved. It turned out that there was a problem with the mesh that slowed down my velocities.
SFr is offline   Reply With Quote

Old   June 23, 2016, 16:36
Default
  #9
New Member
 
Chris Pounds
Join Date: May 2015
Posts: 21
Rep Power: 10
Pndsc is on a distinguished road
Hi SFR,

I'm trying to get to grips with Helyx - do you know of any tutorials for the GUI?
Pndsc is offline   Reply With Quote

Reply

Tags
boundary condition, helyx-os, interfoam, openfoam, pressure


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
mass flow in is not equal to mass flow out saii CFX 12 March 19, 2018 05:21
Problem in setting Boundary Condition Madhatter92 CFX 12 January 12, 2016 04:39
Pressure and Velocity boundary conditions rsmartins CFX 9 September 12, 2015 06:32
Radiation interface hinca CFX 15 January 26, 2014 17:11
Question about heat transfer coefficient setting for CFX Anna Tian CFX 1 June 16, 2013 06:28


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