|
[Sponsors] |
February 3, 2012, 23:53 |
problem about pressure driven flow
|
#1 |
Member
Haomin Yuan
Join Date: Jan 2012
Location: Madison, Wisconsin, USA
Posts: 59
Rep Power: 14 |
Dear ALL Foamers:
I have a very simple problem but is very difficult for me. I am simulating a pressure driven compressible flow, ie, the inlet and outlet pressure are given, and velocity is calculated from the inlet and outlet conditions. but from the tutorial cases from compressible solver, velocity is given and pressure is calculated. Do any of you have any ideas about how to set the boundary condition for pressure driven flow, OR any solver is suitable for this problem? thank you in advance. |
|
February 4, 2012, 17:58 |
|
#2 |
Senior Member
David Gaden
Join Date: Apr 2009
Location: Winnipeg, Canada
Posts: 437
Rep Power: 22 |
I think velocity changes and pressure changes are related. So in solving for one, you are left with an unknown constant offset. That is why we need to fix a reference pressure when it is not set at a boundary condition, and I think the same is true for velocity. If the "inlet" and "outlet" are zero gradient for velocity, there is a continuum of possible flow solutions that give the same pressure distribution, even with no-slip conditions on the walls. In other words, your solution may "blow up" with the velocity ever increasing from inlet to outlet for no apparent reason.
/speculation
__________________
~~~ Follow me on twitter @DavidGaden |
|
February 5, 2012, 13:14 |
|
#3 |
New Member
Martin
Join Date: Feb 2012
Location: Germany
Posts: 13
Rep Power: 0 |
I had good results with the following settings for compressible, pressure driven flows:
Inlet p - TotalPressure U - pressureInletVelocity Outlet p - fixedValue (static pressure) U - pressureInletOutletVelocity I think, every compressible solver should be okay. I would start with rhoSimpleFoam for stationary flows and/or rhoPisoFoam for transient flows. |
|
February 6, 2012, 11:03 |
|
#4 |
Senior Member
maddalena
Join Date: Mar 2009
Posts: 436
Rep Power: 23 |
Are these BCs ok for an incompressible solver as well?
mad |
|
February 20, 2012, 18:54 |
|
#5 | |
New Member
Tim Beach
Join Date: Sep 2009
Posts: 1
Rep Power: 0 |
Quote:
Test case ----> New case Inlet p - zeroGradient ----> totalPressure where p0 = value from test case U - flowRateInletVelocity ----> pressureInletVelocity Outlet p - fixedValue ----> fixedValue (static pressure) U - inletOutlet ----> pressureInletOutletVelocit When I do this, the code bombs very quickly-2 iterations. I'm just starting to look at this more closely but I'm still clueless . The only thing I've tried beyond that is run slip walls on the duct, specify a small Pt, and turn off the turbulence model. I'm trying to make the simplest case possible to figure this out. Any tips would be appreciated. Thanks Tim |
||
June 24, 2020, 20:44 |
Mesh resolution is critical
|
#6 |
New Member
Behrang Mohajer
Join Date: Nov 2014
Location: Toronto
Posts: 6
Rep Power: 12 |
Please note that for course mesh resolution rhoSimpleFoam diverges very quickly. if you write every iteration (write interval = 1), you will be able to monitor that the values skyrocket quickly in paraFoam. That usually starts with the fields regarding your turbulence model first (like k and epsilon fields). Please note that paraView does not show such fields by default and you must choose so to visualize them.
Anyway, the combination of BCs below worked for me. My course mesh had 4000 cells (thus diverging right by the patches) while the fine one had 50,000 cells on the same geometry. Please note that I am modelling an ejector. Therefore, I have also a suction patch. In my case, the inlet to outlet flow is supposed to suck air from this patch. however, you may simply ignore it for your code. p: dimensions [1 -1 -2 0 0 0 0]; internalField uniform 1.e5; inlet { type totalPressure; p0 uniform 1.25e5; gamma 1.4; value 1.1e5; } outlet { type fixedValue; value uniform 1e5; } suction { type fixedValue; value uniform 1e5; } U: inlet { type pressureInletUniformVelocity; value uniform (0 0 0); } outlet { type pressureInletOutletVelocity; phi phi; tangentialVelocity uniform (0 0 0); value (0 0 0); } suction { type zeroGradient; } p { margin-bottom: 0.25cm; line-height: 115% } |
|
June 4, 2021, 05:28 |
|
#7 | |
New Member
Lewis
Join Date: Jun 2021
Posts: 26
Rep Power: 5 |
Quote:
1. Inlet: fixedValue, outlet: inletOutlet 2. Inlet: totalTemperature, outlet: zeroGradient In both cases, it crashes. Will it be overconstrained if I use fixed temperature value at the outlet along with the p and U BCs as yours? |
||
June 4, 2021, 06:30 |
|
#8 | |
New Member
Lewis
Join Date: Jun 2021
Posts: 26
Rep Power: 5 |
A couple more questions when I started playing around these BCs:
Quote:
Why does the tangentialVelocity keyword appear only for outlet (Also, phi - isn't that optinal?)? Does it have some default value if not provided? Where can I find more on this? I missed this line earlier. What does this mean really? Is this part of the p file? |
||
June 4, 2021, 08:51 |
|
#9 | |
New Member
Lewis
Join Date: Jun 2021
Posts: 26
Rep Power: 5 |
Hi, just realised for some reason my initial reply didn't get through.
Quote:
I have posted a thread here about my case: Correct BCs for known outlet conditions and unknown inlet conditions |
||
|
|
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 06:21 |
Mass flow inlet and pressure outlet issue | nikhil | FLUENT | 5 | December 11, 2013 13:30 |
Pressure driven flow | ChrisPro | OpenFOAM Pre-Processing | 0 | December 4, 2011 05:22 |
total pressure boundary problem ==> flow from outlet to inlet!! | mrshb4 | OpenFOAM | 0 | November 20, 2010 13:41 |
pressure driven flow by pressure correction method | justentered | Main CFD Forum | 0 | December 30, 2003 00:52 |