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

gas flow through a pipe

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   June 16, 2011, 12:01
Default gas flow through a pipe
  #1
Member
 
Tibo
Join Date: Jun 2011
Posts: 68
Rep Power: 14
megacrout is on a distinguished road
Hi everyone,

I am trying to simulate the flow of a gas through a pipe due to a pressure difference between inlet and outlet. I first did it using a 5°-element and wedge patches like suggested in the tutorial (user guide). This works great.

As I want to get in the end the entire shape (or at least a quarter of a pipe) and donīt want to compute too many normal vectors for the mirrorMesh function, I tried using other symmetries. But could not get any of them to work.
No matter what I try, I get a physically unjustified slow flow in the center of the pipe (where it should be the fastest). Even though this disappears as the steady state is reached, Iīd like to get the transient situation right too.

Here are the geometries I tried:
- triangle (one corner set equal to another one) with one curved side
- square with one corner at a distance from the opposite corner equal to the two opposite side (i.e. radius) and its two sides curved
- square with a tiny (but not zero) face and a curved one (the opposite one), the two remaining faces being normal to each other

And the patch I tried for the axis or the face close to it (depending on the selected shape):

-empty
-wall (patchField slip)
-symmetryPlane

The curved face(s) remained as "wall" and the sides as "symmetryPlane".

I canīt show any code nor pictures of my problem (using 2 computers with no administrator access, internet on one, openFoam on the other one...) so let me know if you need further descriptions.

Thanks for your help.

Tibo
megacrout is offline   Reply With Quote

Old   June 16, 2011, 12:45
Default
  #2
nsf
Senior Member
 
Nicolas Edh
Join Date: Mar 2010
Location: Uppsala, Sweden
Posts: 123
Rep Power: 18
nsf is on a distinguished road
Hey Tibo,

I once created a python script that outputs a blockMeshDict for a quarter pipe. The mesh that's generated consists of a quarter "o-grid". One centre block and two circumferential blocks.

If you want the entire pipe you can just mirror it twice.

However the python script is commented part in English and part in Swedish. If your interested I can post the script here.

Best Regards

Nicolas
nsf is offline   Reply With Quote

Old   June 21, 2011, 06:13
Default
  #3
Member
 
Tibo
Join Date: Jun 2011
Posts: 68
Rep Power: 14
megacrout is on a distinguished road
Hey Nicolas,

Thanks for your answer. This is quite of a late reply, I tried your method and got some other ideas too while working on it...

I get the grid following your idea, even though it is not quite like I would like it (ideally, Iīd like a progressively decreasing cell size on the radial direction, so that the flow can be more accurately described in the vicinity of the pipeīs wall).

The problem now is that I canīt run the simulation, because of the internal faces (between the square and the two triangles). They get automatically defined as "empty" and OpenFOAM does not like it as the problem is not 1D or 2D.

Any suggestion?
Thanks in advance.

Tibo
megacrout is offline   Reply With Quote

Old   June 21, 2011, 16:39
Default
  #4
nsf
Senior Member
 
Nicolas Edh
Join Date: Mar 2010
Location: Uppsala, Sweden
Posts: 123
Rep Power: 18
nsf is on a distinguished road
Hey Tibo,

I've (hopefully) attached my python-script. (I had to rename it to .c to upload it). It starts with some editable parts where you define stuff like radius and BLheight. It uses "simpleGrading" in the radial direction.

Have a look at the mesh and the script, should you have any comments or questions I'm happy to reply.

With regards to your mesh, if you post your blockMeshDict I can comment. Though I'm no expert on the subject.

/Nicolas
Attached Files
File Type: c quarterCylindBlockMeshDict.c (5.3 KB, 73 views)
nsf is offline   Reply With Quote

Old   June 27, 2011, 10:20
Default
  #5
Member
 
Tibo
Join Date: Jun 2011
Posts: 68
Rep Power: 14
megacrout is on a distinguished road
Ok, I did download it and opened it... but I canīt use it. Can you briefly tell me what I have to do with it please? Compiling it directly using blockMesh does not work. I put it in a "system" folder and tried to run it but OpenFOAM tells me it cannot read the first line. Do I have to split the data in this file into several files? If so, into which ones (names) and where (folders)?

Please excuse such a basic question but Iīm new to OpenFOAM and I did not work much with the C++ language before...

Thanks in advance.
megacrout is offline   Reply With Quote

Old   June 27, 2011, 13:08
Default
  #6
Senior Member
 
Martin
Join Date: Oct 2009
Location: Aachen, Germany
Posts: 255
Rep Power: 21
MartinB will become famous soon enough
Hi Tibo,

rename the file to quarterCylindBlockMeshDict.py and run the script with:
python quarterCylindBlockMeshDict.py

A new file with name blockMeshDict will appear, which you must copy to the constant/polyMesh directory.

Martin
MartinB is offline   Reply With Quote

Old   June 28, 2011, 14:14
Default Explanation
  #7
nsf
Senior Member
 
Nicolas Edh
Join Date: Mar 2010
Location: Uppsala, Sweden
Posts: 123
Rep Power: 18
nsf is on a distinguished road
Hi Tibo,

Martin is right. Let us know how it works out for you or if you need further assitance.

If you get the script to work, here's an explination of what the script does:

First there are some variables to set under "User Data", they are
Code:
 
r=38.1/2;            # Radius of the cylinder
height=10;          # Height ( in the axial direction )
BLheight=0.5*r;   # Boundary layer height from walls
lenIB=r-BLheight; # don't change this one
fac=1.22;            # factor that defines where to put 
                         #the corner of the inner block
nrCellsAz=20;      # Nr of cells in the azimuthal direction
nrCellsAx=1;       # Nr of cells in the axial direction
nrCellsR=15;       # Nr of cells in the radial direction of the radial blocks
radGrad=0.2;      # EndCellHeight/StarCellHeight < 1, used for grading
outPutFileName='blockMeshDict';
Basically what the script does next is to output a blockMeshDict file. Where the position of the vertices is calculated with the above data. It also sets grading in the radial direction.

If you want "a smaller piece of the cake", say half a quarter of a pipe you could change the center block to one or two wedge blocks instead. I haven't tried that, it's just a guess.

Best Regards

Nicolas
nsf is offline   Reply With Quote

Old   July 7, 2011, 05:18
Default
  #8
Member
 
Tibo
Join Date: Jun 2011
Posts: 68
Rep Power: 14
megacrout is on a distinguished road
All right. First of all, thanks a lot to all of you. I really appreciate the fact you take the time to explain to me how the basic stuff goes.

Secondly, this mesh is great. Exactly what I was trying to do. Simple grading in the center and refined mesh on the pipeīs surface to properly describe the laminar flow.

However, Iīm afraid this does not work. I tried with symSouth and symNorth (the radial sidesī patches) defined with a patch type "patch" as in Nicolasī file (patch field type "zeroGradient") as well as with a patch type "symmetryPlane" (patch field type "symmetryPlane") and got in both cases a problem similar to the one I describe at the beginning of this thread. Instead of the flow being slowed down at the axis, as in my initial problem, it is now slowed down at the top left corner of the central "square".

If what I did is the same as what you did, Nicolas, you might have not seen the mistake because the top left corner of your square is close enough to the surface. However, you can notice the solution is not quite satisfying while looking at the transient states, e.g. the first time step (s. appendix).
This is however even easier to notice with a smaller inner square, as I tried by slightly modifying your code (s. second appendix, also first time step).

Two questions:
1) May I have coded something improperly (did you also get these result(s), Nicolas?) ? If so, what file(s) should I look at?
2) If it seems to have been properly run, what could be the explanation to these "wrong" results and how can I solve it? Use a different solver? A different mesh?

Thanks for your time.
Attached Images
File Type: jpg problem_nicolas.jpg (18.0 KB, 34 views)
File Type: jpg my_problem_transient.jpg (20.4 KB, 40 views)
megacrout is offline   Reply With Quote

Old   July 7, 2011, 14:47
Default
  #9
nsf
Senior Member
 
Nicolas Edh
Join Date: Mar 2010
Location: Uppsala, Sweden
Posts: 123
Rep Power: 18
nsf is on a distinguished road
I'm glad you like the mesh! Actually, until today I actually never ran the case. But today I did try and did get an ok solution. Meaning I cant observe the same behavior as you did, see attachment. However I didn't put any effort in to replicating your results.

To answer your questions

1.) Well I can't spot anything but then you haven't showed everything you've done so I can't exclude it. I presume you have chosen reasonable values with regards to axial length and number of cells.

2.)
I'm not sure of what went wrong. Here's my guess. The error is close to the corner of the central block since that's the place where you have high skewness. If you compare the skewness (with checkMesh) of the two meshes I think you will find that the skewness of the second mesh is worse ( I can never recall but I think in OF good skewness is close to zero).

One remedy is to work with the mesh and reduce skewness. Try setting arcs on the edges of the center block. Play around with BLheight parameter in the script. However it's a circular pipe so you can't get rid of all skewness.

Another remedy is as you suggested to change the solver (which did you use?). Did you try pimpleFoam? Also look at the settings in fvSolution and fvSchemes. My first try would be to increase nOuterCorrectors and/or nNonOrthogonalCorrectors. Try it with the second (really bad) mesh and hope for improvement.

Good luck and let me know how it goes!

/Nicolas
Attached Images
File Type: png testCase.png (34.4 KB, 50 views)
nsf is offline   Reply With Quote

Reply

Tags
gas stream, openfoam, pipe, velocity profile


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
High speed compressible flow through pipe Munni Main CFD Forum 6 December 7, 2015 11:33
Gas solid flow in a pipe with 90 bend pandaba FLUENT 0 September 14, 2010 01:43
pulsating static pressure around zero at pipe flow David Kim FLUENT 0 May 16, 2006 13:47
Gas pressure question Dan Moskal Main CFD Forum 0 October 24, 2002 22:02
Hydrostatic pressure in 2-phase flow modeling (CFX4.2) HB &DS CFX 0 January 9, 2000 13:19


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