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

buoyantBoussinesqSimpleFoam - continuity error

Register Blogs Community New Posts Updated Threads Search

Like Tree2Likes
  • 1 Post By greel
  • 1 Post By Kanarya

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   January 3, 2012, 14:37
Question buoyantBoussinesqSimpleFoam - continuity error
  #1
Member
 
Vitor Vasconcelos
Join Date: Jan 2012
Posts: 33
Rep Power: 14
vitors is on a distinguished road
Hello all,

I am new to OpenFoam and I'm trying to solve a simple (at last I think it is...) case in which I have a heated rod inside a pipe. For natural convection it seems ok.

When I try to start a flow (inlet and outlet flows) I get a "continuity error message".

I based the configuration files on "hotRoom" OpenFoam's tutorial case.

The boundary conditions are:

p: inlet -> zeroGradient
outlet -> FixedValue uniform 0;
insideWall -> zeroGradient;
outsideWall -> zeroGradient;

U: inlet -> FixedValue (0 1 0)
outlet -> ZeroGradient (or calculated $internalField;
insideWall -> FixedValue (0 0 0);
outsideWall -> FixedValue (0 0 0);

T: inlet -> FixedValue 300;
outlet -> zeroGradient (or calculated $internalField);
insideWall -> FixedValue 1000;
outsideWall -> FixedValue 300;

So, any suggestions?
Thanks in advance.

Vitor
vitors is offline   Reply With Quote

Old   January 4, 2012, 04:00
Default
  #2
Senior Member
 
romant's Avatar
 
Roman Thiele
Join Date: Aug 2009
Location: Eindhoven, NL
Posts: 374
Rep Power: 20
romant is on a distinguished road
Quote:
Originally Posted by vitors View Post
Hello all,

I am new to OpenFoam and I'm trying to solve a simple (at last I think it is...) case in which I have a heated rod inside a pipe. For natural convection it seems ok.

When I try to start a flow (inlet and outlet flows) I get a "continuity error message".

I based the configuration files on "hotRoom" OpenFoam's tutorial case.

The boundary conditions are:

p: inlet -> zeroGradient
outlet -> FixedValue uniform 0;
insideWall -> zeroGradient;
outsideWall -> zeroGradient;

U: inlet -> FixedValue (0 1 0)
outlet -> ZeroGradient (or calculated $internalField;
insideWall -> FixedValue (0 0 0);
outsideWall -> FixedValue (0 0 0);

T: inlet -> FixedValue 300;
outlet -> zeroGradient (or calculated $internalField);
insideWall -> FixedValue 1000;
outsideWall -> FixedValue 300;

So, any suggestions?
Thanks in advance.

Vitor
For your pressure, you should set the boundary condition to buoyantPressure

for the outlet velocity condition try pressureInletOutletVelocity with value (0 0 0).
__________________
~roman
romant is offline   Reply With Quote

Old   January 4, 2012, 09:02
Default
  #3
Member
 
andres
Join Date: Jul 2011
Posts: 31
Rep Power: 14
greel is on a distinguished road
I always use this bc in p_rgh

wall
{
type buoyantPressure;
rho rhok;
value uniform 0;
}

outlet
{
type zeroGradient;
}
inlet
{
type fixedValue;
value uniform 0;
}
Mahmoud Abbaszadeh likes this.
greel is offline   Reply With Quote

Old   January 12, 2012, 09:14
Default
  #4
Member
 
Vitor Vasconcelos
Join Date: Jan 2012
Posts: 33
Rep Power: 14
vitors is on a distinguished road
Thanks guys. I got a better result, though not perfect. But with this buoyantPressure BC I'll try to tune my simulation.
vitors is offline   Reply With Quote

Old   September 21, 2012, 04:55
Thumbs up Divergence problem solved by Greel's suggestion
  #5
New Member
 
Ameya Durve
Join Date: Jun 2009
Location: Mumbai
Posts: 10
Rep Power: 16
ameyadurve is on a distinguished road
@ Greel:

Boundary conditions for p_rgh suggested by you worked for my simulation.

I was having a divergence problem for buoyantBoussinesqSimpleFoam that got solved with those boundary conditions.

How good the results are, remains to be seen.

Thanks a lot
Ameya
ameyadurve is offline   Reply With Quote

Old   April 29, 2015, 16:25
Default
  #6
Senior Member
 
Join Date: May 2011
Posts: 231
Rep Power: 15
Kanarya is on a distinguished road
How was the results?
I have similar doubts about p and p_rgh boundary conditions in buoyantBoussinesqSimpleFoam solver applied in simple pipe simulation...

thanks!
Quote:
Originally Posted by ameyadurve View Post
@ Greel:

Boundary conditions for p_rgh suggested by you worked for my simulation.

I was having a divergence problem for buoyantBoussinesqSimpleFoam that got solved with those boundary conditions.

How good the results are, remains to be seen.

Thanks a lot
Ameya
Mahmoud Abbaszadeh likes this.
Kanarya is offline   Reply With Quote

Old   June 13, 2022, 10:48
Default
  #7
Member
 
Mahmoud
Join Date: Nov 2020
Location: United Kingdom
Posts: 43
Rep Power: 5
Mahmoud Abbaszadeh is on a distinguished road
Dear Foamers,

It’s been a while that I’ve had the same problem in setting the correct BC for similar problems. Here is the review of how I solved this issue:

Problem: steady state open channel flow simulation. In this scenario, normally the simpleFoam is employed. The BCs are given by:


BCs: inlet, outlet, wall, topWall

U:

inlet
{
type fixedValue;
value uniform (0 0.1589 0);
}

outlet
{
type zeroGradient;
}

wall
{
type noSlip;
}

atmosphere
{
type slip;
}

p:

atmosphere
{
type zeroGradient;
}

inlet
{
type zeroGradient;
}
outlet
{
type fixedValue;
value uniform 0;
}

wall
{
type fixedFluxPressure; //remember that we cannot use Drichlet and Neuman BC at the same time
value uniform 0;
}


As one can see, selecting fixedValue BC for the outlet pressure is physically incorrect even though one can get result. To resolve this issue, I decided to use the hydrostatic pressure as the outlet BC for the pressure. To this end, one need to either define gravity in the governing equation or else use a steady state solver that has gravity in the equations. I went for the second approach. The only available solver for incompressible fluids that has this feature is buoyantBoussinesqSimpleFoam. When this solver is selected, the BCs needs to be defined for the U, p, and p_rgh. Generally, p_rgh=p-rho*g*h. I have searched a lot and finally could find the correct way of setting BC for the foregoing parameters.


U:

inlet
{
type fixedValue;
value uniform (0 0.1589 0);
}

outlet
{
type pressureInletOutletVelocity;
value uniform (0 0 0);
inletValue uniform (0 0 0);
}

wall
{
type noSlip;
}

atmosphere
{
type slip;
}


P:

atmosphere
{
type zeroGradient;
}

inlet
{
type zeroGradient;
}

outlet
{
type calculated;
value $internalField;
}

wall
{
type zeroGradient;

}



P_rgh

inlet
{
type fixedFluxPressure;
}

outlet
{
type fixedValue;
value uniform 0;
}

wall
{
type fixedFluxPressure;
}

atmosphere
{
type fixedFluxPressure;
}


let me know if it is not clear.

Keep Foaming
Mahmoud Abbaszadeh is offline   Reply With Quote

Reply

Tags
boundary conditions, buoyantboussinesqsf, continuity error


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
error compiling modified applications yvyan OpenFOAM Programming & Development 21 March 1, 2016 04:53
CGNS lib and Fortran compiler manaliac Main CFD Forum 2 November 29, 2010 06:25
attach/detach (valve opening/closing) phsieh2005 OpenFOAM Running, Solving & CFD 2 March 21, 2009 05:18
Problem with compile the setParabolicInlet ivanyao OpenFOAM Running, Solving & CFD 6 September 5, 2008 20:50
user defined function cfduser CFX 0 April 29, 2006 10:58


All times are GMT -4. The time now is 13:10.