CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > General Forums > Main CFD Forum

Staggered mesh

Register Blogs Community New Posts Updated Threads Search

Like Tree4Likes
  • 1 Post By TurbJet
  • 1 Post By FMDenaro
  • 1 Post By AliE
  • 1 Post By AliE

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   April 2, 2019, 07:45
Post Staggered mesh
  #1
New Member
 
Mohamed Abu-bakr's Avatar
 
Mohamed Abu-bakr Ibrahim
Join Date: Mar 2018
Posts: 11
Rep Power: 8
Mohamed Abu-bakr is on a distinguished road
I am coding a cfd code using FV method, and I wonder if I have to use staggered mesh for simple algorithm. The problem is lamina 2d back step for incomprehensible flow.
Mohamed Abu-bakr is offline   Reply With Quote

Old   April 3, 2019, 00:52
Default
  #2
Senior Member
 
Join Date: Oct 2017
Location: United States
Posts: 233
Blog Entries: 1
Rep Power: 9
TurbJet is on a distinguished road
Quote:
Originally Posted by Mohamed Abu-bakr View Post
I am coding a cfd code using FV method, and I wonder if I have to use staggered mesh for simple algorithm. The problem is lamina 2d back step for incomprehensible flow.
For incompressible flow, it's highly possibly you have to use staggered mesh; otherwise you have to use some methods to eliminate the oscillations in the pressure field, e.g., Rhie-Chow interpolation.

As far as I know, and correct me if I am wrong, the whole point of staggered mesh for incompressible is to preserve energy. If not, spurious energy will be generated, and it's reflected in your pressure field ('cauz pressure is directly relates to energy).

Anyway, in a word, yes, it might be the easiest way for you to use staggered mesh for incompressible simulation.
TurbJet is offline   Reply With Quote

Old   April 3, 2019, 01:10
Default
  #3
New Member
 
Mohamed Abu-bakr's Avatar
 
Mohamed Abu-bakr Ibrahim
Join Date: Mar 2018
Posts: 11
Rep Power: 8
Mohamed Abu-bakr is on a distinguished road
Quote:
Originally Posted by TurbJet View Post
For incompressible flow, it's highly possibly you have to use staggered mesh; otherwise you have to use some methods to eliminate the oscillations in the pressure field, e.g., Rhie-Chow interpolation.

As far as I know, and correct me if I am wrong, the whole point of staggered mesh for incompressible is to preserve energy. If not, spurious energy will be generated, and it's reflected in your pressure field ('cauz pressure is directly relates to energy).

Anyway, in a word, yes, it might be the easiest way for you to use staggered mesh for incompressible simulation.
The main reason to use the staggered mesh (that I know of) is to avoid false uniform pressure that will lead to zero velocity as illustrated in Versteeg Book as in the attached picturehttps://drive.google.com/file/d/1aAI...ew?usp=sharing.
I think this will lead to destroying energy (kinematic) energy and the solution may never converge.

But what I was wondering about is, even for simple flow with good initial values, will checker-board condition (That what I think you meant by pressure oscillation) happen?
Mohamed Abu-bakr is offline   Reply With Quote

Old   April 3, 2019, 01:18
Default
  #4
Senior Member
 
Join Date: Oct 2017
Location: United States
Posts: 233
Blog Entries: 1
Rep Power: 9
TurbJet is on a distinguished road
Quote:
Originally Posted by Mohamed Abu-bakr View Post
The main reason to use the staggered mesh (that I know of) is to avoid false uniform pressure that will lead to zero velocity as illustrated in Versteeg Book as in the attached picturehttps://drive.google.com/file/d/1aAI...ew?usp=sharing.
I think this will lead to destroying energy (kinematic) energy and the solution may never converge.

But what I was wondering about is, even for simple flow with good initial values, will checker-board condition (That what I think you meant by pressure oscillation) happen?
Since your case is a back-step, it will probably lead to large-scale separation, which is always challenging for CFD simulation; so probably you want to choose your numerical method conservatively. Also, in the image you posted, the checker-board is there, it's the nature of the collocated mesh; it has nothing to do with your initial conditions. So I would personally suggest using staggered mesh anyway.

BTW, thanks for the clarification on the pressure thing.
Mohamed Abu-bakr likes this.
TurbJet is offline   Reply With Quote

Old   April 3, 2019, 01:22
Default
  #5
New Member
 
Mohamed Abu-bakr's Avatar
 
Mohamed Abu-bakr Ibrahim
Join Date: Mar 2018
Posts: 11
Rep Power: 8
Mohamed Abu-bakr is on a distinguished road
You are welcome and thanks for your help.
Mohamed Abu-bakr is offline   Reply With Quote

Old   April 3, 2019, 03:09
Default
  #6
Senior Member
 
Filippo Maria Denaro
Join Date: Jul 2010
Posts: 6,768
Rep Power: 71
FMDenaro has a spectacular aura aboutFMDenaro has a spectacular aura aboutFMDenaro has a spectacular aura about
Is it necessary to use a staggered grid? The answer is no, you can use a non-staggered grid provided that proper care in the formulation is in act


Is it useful to use a staggered grid? the answer is that can be simple and useful only for second order central discretization.


The problem with the non-staggered grid is in the possible decoupling of spurious solutions in the pressure field when a large stencil is used for the pressure. But to see this in terms of kinetic energy production you need to see the divergence-free constraint. Indeed, p*(Div v) is the production term in the balance equation for the kinetic energy.
Mohamed Abu-bakr likes this.
FMDenaro is online now   Reply With Quote

Old   April 3, 2019, 03:22
Default
  #7
New Member
 
Mohamed Abu-bakr's Avatar
 
Mohamed Abu-bakr Ibrahim
Join Date: Mar 2018
Posts: 11
Rep Power: 8
Mohamed Abu-bakr is on a distinguished road
Quote:
Originally Posted by FMDenaro View Post
Is it necessary to use a staggered grid? The answer is no, you can use a non-staggered grid provided that proper care in the formulation is in act


Is it useful to use a staggered grid? the answer is that can be simple and useful only for second order central discretization.


The problem with the non-staggered grid is in the possible decoupling of spurious solutions in the pressure field when a large stencil is used for the pressure. But to see this in terms of kinetic energy production you need to see the divergence-free constraint. Indeed, p*(Div v) is the production term in the balance equation for the kinetic energy.
so if I am planning to use upwind discretization I may use the collocated mesh??
Could you please clarify what kind of formulation you mean for usage of non-staggered mesh?
Thanks for correcting the energy generation point
Mohamed Abu-bakr is offline   Reply With Quote

Old   April 3, 2019, 03:39
Default
  #8
Senior Member
 
Filippo Maria Denaro
Join Date: Jul 2010
Posts: 6,768
Rep Power: 71
FMDenaro has a spectacular aura aboutFMDenaro has a spectacular aura aboutFMDenaro has a spectacular aura about
Quote:
Originally Posted by Mohamed Abu-bakr View Post
so if I am planning to use upwind discretization I may use the collocated mesh??
Could you please clarify what kind of formulation you mean for usage of non-staggered mesh?
Thanks for correcting the energy generation point



Upwind introduce a lot of numerical viscosity in the discretization of the convective term but is not used in the pressure equation that is elliptic.
FMDenaro is online now   Reply With Quote

Old   April 3, 2019, 03:44
Default
  #9
Senior Member
 
Join Date: Dec 2017
Posts: 153
Rep Power: 8
AliE is on a distinguished road
Hello guys, some points were already arised during your discussion. Just to give you my point of view, staggered mesh will solve the checkboarding problem but they are not necessarily easier to implement since the staggering can create some confusion in your head. Moreover they are unsuitable for unstrucured domains or non-rectangular domain. Since you are in the very beginning consider to do a collocated arrangement which nowdays is the common practice. Rhie-Chow interpolation in easy to perform and well documented. Regarding your last question, yes you need rhie-chow even with upwind. The point is that you have to interpolate your momentum equation at cell faces in collocated arrangement (you don't in staggered) and this may cause spurious oscillations in the pressure field.
Mohamed Abu-bakr likes this.
AliE is offline   Reply With Quote

Old   April 3, 2019, 03:52
Default
  #10
New Member
 
Mohamed Abu-bakr's Avatar
 
Mohamed Abu-bakr Ibrahim
Join Date: Mar 2018
Posts: 11
Rep Power: 8
Mohamed Abu-bakr is on a distinguished road
Pressures equation ?! pressure correction equation in simple algorithm?
And I know about the false diffusion in the upwind scheme however I am currently not so focused on accuracy however I am targeting roboust simple implementation.
Mohamed Abu-bakr is offline   Reply With Quote

Old   April 3, 2019, 03:53
Default
  #11
Senior Member
 
Filippo Maria Denaro
Join Date: Jul 2010
Posts: 6,768
Rep Power: 71
FMDenaro has a spectacular aura aboutFMDenaro has a spectacular aura aboutFMDenaro has a spectacular aura about
Yes, RC interpolation is easy to implement and produce stable and unique pressure solutions. It is suitable to start using it. However, such artificial dissipation terms can affect the quality of the solution in some specific formulations like LES.

I developed a more sophisticated formulation that does not introduce dissipation. However, it is introduced in the framework of th Exact projection methods and requires some effort in the implementation and has some computational cost.



https://www.researchgate.net/publica...y-driven_flows


https://www.researchgate.net/publica...taggered_grids
FMDenaro is online now   Reply With Quote

Old   April 3, 2019, 03:56
Default
  #12
Senior Member
 
Join Date: Dec 2017
Posts: 153
Rep Power: 8
AliE is on a distinguished road
Yes, pressure-correction. At some point you have to compute the coeffs as rho*vol/aC and interpolate them at faces.

Upwind is a point to start. You have a lot of diffusion (espescially if the flow is tilted), but it is the most stable option you have. To get the 2nd order go for a linear-upwind, still robust (more than central difference)
Mohamed Abu-bakr likes this.
AliE is offline   Reply With Quote

Old   April 3, 2019, 04:00
Default
  #13
New Member
 
Mohamed Abu-bakr's Avatar
 
Mohamed Abu-bakr Ibrahim
Join Date: Mar 2018
Posts: 11
Rep Power: 8
Mohamed Abu-bakr is on a distinguished road
Quote:
Originally Posted by AliE View Post
Hello guys, some points were already arised during your discussion. Just to give you my point of view, staggered mesh will solve the checkboarding problem but they are not necessarily easier to implement since the staggering can create some confusion in your head. Moreover they are unsuitable for unstrucured domains or non-rectangular domain. Since you are in the very beginning consider to do a collocated arrangement which nowdays is the common practice. Rhie-Chow interpolation in easy to perform and well documented. Regarding your last question, yes you need rhie-chow even with upwind. The point is that you have to interpolate your momentum equation at cell faces in collocated arrangement (you don't in staggered) and this may cause spurious oscillations in the pressure field.
But don't I need to use convection schemes also at velocity control volume faces at staggered mesh, so momentum interpolation is done in both meshes so differencing scheme also, right?
Mohamed Abu-bakr is offline   Reply With Quote

Old   April 3, 2019, 04:10
Default
  #14
New Member
 
Mohamed Abu-bakr's Avatar
 
Mohamed Abu-bakr Ibrahim
Join Date: Mar 2018
Posts: 11
Rep Power: 8
Mohamed Abu-bakr is on a distinguished road
Quote:
Originally Posted by AliE View Post
Yes, pressure-correction. At some point you have to compute the coeffs as rho*vol/aC and interpolate them at faces.

Upwind is a point to start. You have a lot of diffusion (espescially if the flow is tilted), but it is the most stable option you have. To get the 2nd order go for a linear-upwind, still robust (more than central difference)
My flow is mainly in same direction of grid except for the separation after the step so, based on the recommendations in this thread I will go for up wind simple with collocated grid then I may try RC also with up wind or central collocated grid
Mohamed Abu-bakr is offline   Reply With Quote

Reply

Tags
cfd, simple algorithm


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
sliding mesh problem in CFX Saima CFX 46 September 11, 2021 07:38
decomposePar problem: Cell 0contains face labels out of range vaina74 OpenFOAM Pre-Processing 37 July 20, 2020 05:38
[snappyHexMesh] Multi Region Mesh of a car filter Zephiro88 OpenFOAM Meshing & Mesh Conversion 3 September 11, 2019 19:34
[Other] conformed FSI mesh for unstructured fluid region ashish.svm OpenFOAM Meshing & Mesh Conversion 10 August 2, 2019 08:40
[ICEM] surface mesh merging problem everest ANSYS Meshing & Geometry 44 April 14, 2016 06:41


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