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

"non-orthogonal" Boundary conditions

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   April 11, 2001, 12:16
Default "non-orthogonal" Boundary conditions
  #1
frederic felten
Guest
 
Posts: n/a
Hi there,

(1)-i'm seeking informations and references on how to implement non-orthogonal boundary conditions for complex geometries using the finite volume method. (2)-I'm also interested on how the pressure at the wall has to be set ?

Thanks in advance for your help. Sincerely,

Frederic Felten
  Reply With Quote

Old   April 11, 2001, 14:16
Default Re: "non-orthogonal" Boundary conditions
  #2
kalyan
Guest
 
Posts: n/a
Take a look at the paper by Zang, Koseff, Street in JCP. I am not exactly sure about the year, it is either 1994 or 1995. The paper is on non-staggered implementation of a fractional step method. But, strictly speaking, it is a mixed (staggered/non-staggered) method. It uses cell-centered cartesian velocities and face-centered contravariant fluxes. The latter variables are used to conserve mass much like in the standard staggered schemes. So the pressure boundary conditions should be generic enough.
  Reply With Quote

Old   April 17, 2001, 13:53
Default Re: "non-orthogonal" Boundary conditions
  #3
frank
Guest
 
Posts: n/a
some further details about your general FV approach would be useful to evaluate the problem.

Structured/unstructured grid. Cell centered /cell vertex method ? Upwind/central differencing?

And: Euler or Navier stokes ?

Frank
  Reply With Quote

Old   April 17, 2001, 19:50
Default Re: "non-orthogonal" Boundary conditions
  #4
frederic felten
Guest
 
Posts: n/a
Here is the overall picture: Unsteady Navier-Stokes, finite volume, curvilinear, second order(central difference), structured mesh, collocated arrangement for the cartesian velocities, and the fluxes are contravariant on the faces. A fractional step method is used (I have to solve a pressure poisson equation) and the time marching is implemented using a 3rd order runge-kutta.

So far my pressure solver give me back a divergence free field after correction, but only for the interior points. I'm experiencing some problems(non divergence free field at the wall) when the mesh at the wall is not exactly orthogonal. If you have experienced a similar problem or have some info that could help me solve this, please feel free to post a message.

Sincerely,

Frederic Felten.
  Reply With Quote

Old   April 18, 2001, 12:27
Default Re: "non-orthogonal" Boundary conditions
  #5
Jim Park
Guest
 
Posts: n/a
Just to be sure:

Do you mean "collocated" or "colocated"?
  Reply With Quote

Old   April 18, 2001, 13:06
Default Re: "non-orthogonal" Boundary conditions
  #6
frederic felten
Guest
 
Posts: n/a
i mean collocated as in non-staggered.

Sincerely,

Frederic felten
  Reply With Quote

Old   April 18, 2001, 13:09
Default Re: "non-orthogonal" Boundary conditions
  #7
kalyan
Guest
 
Posts: n/a
Except for the 3rd order runge-kutta integration scheme, you seem to be doing exactly what Zang et al. have done in their JCP paper that I had mentioned in my earlier posting. Let me know if you have a problem locating this paper.
  Reply With Quote

Old   April 18, 2001, 13:34
Default Re: "non-orthogonal" Boundary conditions
  #8
frederic felten
Guest
 
Posts: n/a
i found this paper, and i'm looking at the BC for pressure. About doing the same thing, well it's not true since they are using a QUICK scheme, then not respecting the exact energy conservation by introducing dissipation. With the 2nd order central differencing, one respects exactly the energy conservation for the inviscid terms (check JCP 143, pp 90-124, 1998. by Morinishi, Lund, Vasilyev and Moin). Another thing that is different, i do not transform from physical space to computational space, solving everything directly in physical space (except for the viscous terms where the transformation is necessary).

Thanks for your help,

Sincerely,

Frederic Felten
  Reply With Quote

Old   April 18, 2001, 13:38
Default Re: "non-orthogonal" Boundary conditions
  #9
Jim Park
Guest
 
Posts: n/a
What you describe is "co"+"location", in which the variables for a cell are located at a common point.

"collocation" refers to (I think) interpolation technicques using families of functions. I'm sure one of the resident mathematicians will provide details. For an example, see the SIAM J. on Numerical Analysis, v. 34, #6, pp. 2274-2287, 1997. "Spline Collocation Differentiation Matrices," by Russell and Sun.
  Reply With Quote

Old   April 18, 2001, 14:02
Default Re: "non-orthogonal" Boundary conditions
  #10
kalyan
Guest
 
Posts: n/a
I forgot for a minute there that your primary interest is in DNS/LES.

The QUICK scheme is used in this paper just for computing the predicted values of the contravariant fluxes from the predicted cell centered velocities. You can replace this with a symmetric interpolation scheme. The method will not develop checker board type oscillations since the corrected values of the cell-centered velocities and face-centered fluxes are updated indendently (using the cell-centered pressure gradients and the face-centered pressure gradients respectively).

The type of approach described above has been adopted recently by Mittal et al. You can download the JCP paper from Prof. Mittal website at UF, Gainesville. In this paper, they use cell-centered velocities and face-centered fluxes (although on cartesian meshes). There is no upwinding (i.e. QUICK type interpolations) anywhere and yet the method is free from checker board type oscillations.

I understand that the way you compute contra-variant fluxes could be different from the way Zang et al. compute them. But once they are computed, your Poisson equation for pressure and the boundary conditions perhaps are of the same form as in their paper. i.e. Area integral of intermediate contravariant flux = Area integral of the pressure gradient (computed at face centers). So the solution of Poisson equation may be obtained in exactly the same way even if the rest of the solver is different.
  Reply With Quote

Old   April 19, 2001, 09:33
Default Re: "non-orthogonal" Boundary conditions
  #11
Sebastien Perron
Guest
 
Posts: n/a
I use a cell-centered finite volume scheme on unstructered grids. I don't use a staggered grid approach (the velocity is re-interpolated on the volume interfaces, this is similar to the Rie Chow scheme). The continuity equation is solved via a projection-2 scheme. My BC's could be similars to those you need. If you are interested, I could send you a paper that will be presented at CFD2001 (University of Waterloo, Canada) at the end of May.

Regards.
  Reply With Quote

Old   April 19, 2001, 11:47
Default Re: "non-orthogonal" Boundary conditions
  #12
frederic felten
Guest
 
Posts: n/a
Thanks for your offer sebastien. If you coul send me this paper i'd be delighted.

Sincerely,

Frederic Felten feltenf@hotmail.com
  Reply With Quote

Old   April 20, 2001, 10:29
Default Re: "non-orthogonal" Boundary conditions
  #13
Bernd Hagenah
Guest
 
Posts: n/a
hi frederic,

i think there are several ways to attack your problem. I used differnt types of boundary conditions for non-orthogonal curvatures, and the easiest way for me was to use the compatibility relations (meauzé, fourmeux, fatsis etc. all from ONERA france) The basic idea is: The euler equations are time-hyperbolic, that means there are real eigen values, that means the assambled jacobien matrix could be diagonalized for every direction n=(nx, ny, nz). In general the euler-equations are substitued by a normalized charistic set of variables. The new equation is pretty similiar to the euler ones.

d/dt W + n (nabla) W =0

and this gives you at the and all the variables that you need at the border... If your are more interested please let me now.

bernd halleluja from switzerland
  Reply With Quote

Old   April 20, 2001, 10:36
Default Re: "2.nd part.non-orthogonal" Boundary conditions
  #14
Bernd Hagenah
Guest
 
Posts: n/a
On the other hand you could if your border is a haerd one, like a airfoil etc. than you could also use the pressure normal equations, which means you should make a projetion of the physical values from the flow field to the border by respecting the geometries. Normally people are making an extrapolation first or second order of the density (rho) and the velocities (x,v) (respect the geometries by using co- and contra variant velocities) from these values, you could determine the pressure gradient on the profile and from that the pressure value itself. It is phyiscal motivated approach, i prefore the mathmatical on with the compatibility relations.

Last point: For what kind of mach-number do you want to use your boundary conditions? Subsonic, transonic, hypersonic...

thanx and good luck, bernd
  Reply With Quote

Old   April 20, 2001, 12:38
Default Re: "non-orthogonal" Boundary conditions
  #15
frederic felten
Guest
 
Posts: n/a
Thank you very much for your help bernd. i now have plenty of informations to work with.

Sincerely,

Frederic felten
  Reply With Quote

Reply


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
Impinging Jet Boundary Conditions Anindya Main CFD Forum 25 February 27, 2016 12:58
OpenFOAM Variable Velocity Boundary Conditions NickolasPl OpenFOAM Programming & Development 2 May 19, 2011 05:37
[Netgen] boundary conditions and mesh exporting vaina74 OpenFOAM Meshing & Mesh Conversion 2 May 27, 2010 09:38
[Commercial meshers] Trimmed cell and embedded refinement mesh conversion issues michele OpenFOAM Meshing & Mesh Conversion 2 July 15, 2005 04:15
A problem about setting boundary conditions lyang Main CFD Forum 0 September 19, 1999 18:29


All times are GMT -4. The time now is 17:14.