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

First order in time and Central Difference Convergence problem

Register Blogs Members List Search Today's Posts Mark Forums Read

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   February 12, 2010, 14:40
Default First order in time and Central Difference Convergence problem
  #1
Member
 
Ramesh K
Join Date: Dec 2009
Location: Bangalore
Posts: 73
Rep Power: 16
RameshK is on a distinguished road
Send a message via Yahoo to RameshK
Hi all
I am trying to solve compressible flow of gas in a cylinder using N-S equations.
I have written a code using finite volume method with first order in time and central difference in space. My grid is generated by cylindrical coordinates and the solver in cartesian(meaning grid has concentric circles and radial lines)...

I have problem in convergence... the solution oscillates and diverges... I have added artificial dissipation also then I see these oscillations and divergence other wise it only diverges

I have tried with various cfl ranging from 0.9 to 0.0001 but failed to get convergence

can any body tell what exactly the problem might be....

I have checked the code to see the total flux in the initial condition for all the cells to be zero and ensured proper application of boundary conditions..

any suggestions of what can be checked
RameshK is offline   Reply With Quote

Old   July 17, 2010, 08:52
Default
  #2
New Member
 
Akinola
Join Date: Jul 2010
Posts: 25
Rep Power: 15
falopsy is on a distinguished road
Quote:
Originally Posted by RameshK View Post
Hi all
I am trying to solve compressible flow of gas in a cylinder using N-S equations.
I have written a code using finite volume method with first order in time and central difference in space. My grid is generated by cylindrical coordinates and the solver in cartesian(meaning grid has concentric circles and radial lines)...

I have problem in convergence... the solution oscillates and diverges... I have added artificial dissipation also then I see these oscillations and divergence other wise it only diverges

I have tried with various cfl ranging from 0.9 to 0.0001 but failed to get convergence

can any body tell what exactly the problem might be....

I have checked the code to see the total flux in the initial condition for all the cells to be zero and ensured proper application of boundary conditions..

any suggestions of what can be checked

I am having the exact same problem now. How did you go about resolving it? i will be very grateful for your reply. Thanks
falopsy is offline   Reply With Quote

Old   July 17, 2010, 09:09
Default
  #3
Super Moderator
 
Praveen. C
Join Date: Mar 2009
Location: Bangalore
Posts: 342
Blog Entries: 6
Rep Power: 18
praveen is on a distinguished road
First of all, I would recommend trying a higher order time integration scheme since the first order scheme coupled with the high order space discretization is generally unstable. The 3-stage TVDRK scheme of Shu and Osher or the standard 4-stage RK scheme would be good choices.
praveen is offline   Reply With Quote

Old   July 17, 2010, 09:35
Default
  #4
New Member
 
Akinola
Join Date: Jul 2010
Posts: 25
Rep Power: 15
falopsy is on a distinguished road
Quote:
Originally Posted by praveen View Post
First of all, I would recommend trying a higher order time integration scheme since the first order scheme coupled with the high order space discretization is generally unstable. The 3-stage TVDRK scheme of Shu and Osher or the standard 4-stage RK scheme would be good choices.
I thought of that as well but I need to apply implicit scheme because the process I am trying to simulate can have physical time of up to 2 hours and I need to be able to use as high a time step as possible. I am trying to avoid the stringent CFL condition if you guess what I mean. From my lit review, only the first order Euler time integration is unconditional stable. I hope you get my point?
falopsy is offline   Reply With Quote

Old   July 17, 2010, 09:39
Default
  #5
Super Moderator
 
Praveen. C
Join Date: Mar 2009
Location: Bangalore
Posts: 342
Blog Entries: 6
Rep Power: 18
praveen is on a distinguished road
Quote:
Originally Posted by falopsy View Post
I thought of that as well but I need to apply implicit scheme because the process I am trying to simulate can have physical time of up to 2 hours and I need to be able to use as high a time step as possible. I am trying to avoid the stringent CFL condition if you guess what I mean. From my lit review, only the first order Euler time integration is unconditional stable. I hope you get my point?
My response was to RameshK. I am assuming he is using explicit, first order in time scheme.
praveen is offline   Reply With Quote

Old   July 17, 2010, 09:49
Default
  #6
Senior Member
 
Join Date: Nov 2009
Posts: 411
Rep Power: 19
DoHander is on a distinguished road
Quote:
Originally Posted by falopsy View Post
I thought of that as well but I need to apply implicit scheme because the process I am trying to simulate can have physical time of up to 2 hours and I need to be able to use as high a time step as possible. I am trying to avoid the stringent CFL condition if you guess what I mean. From my lit review, only the first order Euler time integration is unconditional stable. I hope you get my point?
Actually you can find second and high order schemes for the time integration, implicit schemes and also uncoditional stable (see for example Ferziger and Peric) or you can search for the dual time step method of Jameson. The last one is the method of choice in a few commercial CFD codes.

Do
DoHander is offline   Reply With Quote

Old   July 17, 2010, 10:06
Default
  #7
New Member
 
Akinola
Join Date: Jul 2010
Posts: 25
Rep Power: 15
falopsy is on a distinguished road
Quote:
Originally Posted by praveen View Post
My response was to RameshK. I am assuming he is using explicit, first order in time scheme.
Quote:
Originally Posted by DoHander View Post
Actually you can find second and high order schemes for the time integration, implicit schemes and also uncoditional stable (see for example Ferziger and Peric) or you can search for the dual time step method of Jameson. The last one is the method of choice in a few commercial CFD codes.

Do

@Praveen, I know you are referring to RameshK but I am facing similar issues and will appreciate any help.

@DoHander; will try to implement the other methods but will like to debug my program with a simple scheme cos it will be easier to detect bugs in them. I am guessing my problem is not from the time discretisation because the solution did not even converge for the first time step. I am looking at the first step of SIMPLE scheme ie finding velocity with a fixed pressure fields. I hope you can help me. Thanks
falopsy is offline   Reply With Quote

Old   July 17, 2010, 15:13
Default Bug in the program
  #8
Member
 
Ramesh K
Join Date: Dec 2009
Location: Bangalore
Posts: 73
Rep Power: 16
RameshK is on a distinguished road
Send a message via Yahoo to RameshK
Hi

Actually there was a bug in calculating the velocity magnitude in the code, fixed it and got the desired convergence. I have solved the same problem for pressure ratio (Po/P)of 1.2 and 1.1 where Po is total pressure at inlet and static pressure at exit, used RK 4 for time integration and solved it. But for convergence I have worked both Euler and Ns equations, for euler the convergnece went all the way to 1e-16 but for NS it was oscillating at 1e-4. NS code I have run for nearly 3 lakh time steps.
RameshK is offline   Reply With Quote

Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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
A simple problem with mfix joshzrr Main CFD Forum 2 October 31, 2013 05:11
Convergence problem suthichock Main CFD Forum 27 May 11, 2009 08:05
LES - numerics David Hunt Main CFD Forum 8 May 23, 2000 03:08


All times are GMT -4. The time now is 08:57.