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

MULTIGRID 3D

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   June 17, 2005, 09:38
Default MULTIGRID 3D
  #1
Davoche
Guest
 
Posts: n/a
Hi, i'm using FMG ( Full Multigrid Method ) from Numerical Recipes.

I will adapt this for a 3D stretched Poisson equation but for the moment I'm in trouble with the simple 2D regular Laplace equation: Laplacian[T(x,y)]=0.

The problem is about the inhomogeneous boundary condition. In fact, I want to simulate the statiationnary problem of heated wall:[T(x=0,y)]=1 and :[T(x=1,y)]=0. As mentionned in the Num.Rec., I have introuduced the boundary condition in the source term (R.H.S.), but it doesn't work at all [T=0] everywhere.

Any Ideas ????
  Reply With Quote

Old   June 17, 2005, 12:05
Default Re: MULTIGRID 3D
  #2
Junseok Kim
Guest
 
Posts: n/a
Which language are you using for this code? I may help you.
  Reply With Quote

Old   June 17, 2005, 12:41
Default Re: MULTIGRID 3D
  #3
Davoche
Guest
 
Posts: n/a
Thanks I'm using Fortran 77 (or 90).
  Reply With Quote

Old   June 17, 2005, 14:20
Default Re: MULTIGRID 3D
  #4
Junseok Kim
Guest
 
Posts: n/a
It is hard to see the code problem, would you send the file to me, I will take a look at it to find bugs.

  Reply With Quote

Old   June 18, 2005, 16:55
Default Re: MULTIGRID 3D
  #5
Junseok Kim
Guest
 
Posts: n/a
parameter (n=65)

real*8 T

dimension T(n,n) c c x: c

ncycle=2

do 5 j=1,n

do 5 i=1,n

T(i,j)=0.d0 !=> temporal equilibrium qd t->infini

5 continue c

do 7 i=1,n

T(i,1)=-1.d0 !=> Boundary condition applied to the lower wall

7 continue ! The wall is heated at T(i,j=1)=1.

Take a look at the Numerical Recipes again, and try below,

do 7 i=1,n

T(i,2)=-1.d0

  Reply With Quote

Old   June 19, 2005, 12:31
Default Re: MULTIGRID 3D
  #6
Davoche
Guest
 
Posts: n/a
Thanks, I've tried it... But there still problems I try to solve.

a) The solution doesn't correspond to boundary I fix: T=1.

b) The solution depends on the Grid size !!!
  Reply With Quote

Old   June 19, 2005, 20:24
Default Re: MULTIGRID 3D
  #7
Junseok Kim
Guest
 
Posts: n/a
1) After you calculate the solution, you need to add T=1 at the boundary.

2) The problem itself is singular problem, why don't you try it with known solution to test the code.

For example,

T(x,y)=(x**2-x**4)(y**4-y**2) and set the source term as Laplacian of this T and solve the Poisson equation and compare with numerical solution and exact solution.

  Reply With Quote

Old   June 20, 2005, 10:02
Default Re: MULTIGRID 3D
  #8
Davoche
Guest
 
Posts: n/a
Thank you. I've already fixed T=1 at the boundary but it doesn't appears in calculation so...

I have test the code with your exemple and it works well. So it was clearly a problem of singularity.

A question arises :

I'm trying to implement this Multigrid method to resolve a Pojection Pressure equation ( 2nd step of fractional Step Method in Navier Stokes ). But in wall bounded flow, it seems to discarded the boundary condition. I'm a little bit confused with the implicit 0 boundary condition.

Thank you one more time
  Reply With Quote

Old   June 20, 2005, 11:06
Default Re: MULTIGRID 3D
  #9
Junseok Kim
Guest
 
Posts: n/a
If you use piecewise linear element in the pressure solver, and it turns out using 9 point finite difference scheme for Poisson solver, the zero boundary condition is obtained by zero Neumann boundary condition for the pressure field. The zero Neumann boundary condition for the pressure field implicitly given by using a test function, which is zero compact support in the boundary points.

  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
LES by Multigrid mnabi Main CFD Forum 8 July 11, 2009 20:21
multigrid sureshkumar Main CFD Forum 0 June 9, 2006 01:20
Multigrid method Suresh kumar Main CFD Forum 1 April 24, 2006 20:07
MULTIGRID at the wall Jim Main CFD Forum 0 February 19, 2003 12:22
Multigrid applied to k-e models Paulo Zandonade Main CFD Forum 9 May 24, 1999 08:10


All times are GMT -4. The time now is 19:11.