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

successive increase in timestep

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   August 26, 2008, 08:56
Default successive increase in timestep
  #1
MAB
Guest
 
Posts: n/a
I am having problem in specifying a reasonable timestep. Any starting time step greater than 0.005[s] gives an overflow error. Can i specify initial timestep as 0.005[s] and then increase it to 0.05 . How to sepcify these two timesteps. any suggestion would be appreciated.

  Reply With Quote

Old   August 26, 2008, 09:40
Default Re: successive increase in timestep
  #2
John S.
Guest
 
Posts: n/a
You can change the timestep during the simulation though the solver manager if running locally or over whatever network you use to run parallel. You can also specify an expression for the timestep and it's fairly simply to set up a step function to start the timestep at .005 and have it gradually step up to .05 after X iterations.
  Reply With Quote

Old   August 26, 2008, 11:04
Default Re: successive increase in timestep
  #3
MAB
Guest
 
Posts: n/a
Thanks John, Could you give an example of this expression. lets say I want to increase the timestep from 0.005 to 0.05 after 20timesteps or 20 iterations. what would be the expression of the step function??? thanks
  Reply With Quote

Old   August 26, 2008, 11:29
Default Re: successive increase in timestep
  #4
MAB
Guest
 
Posts: n/a
actually I am trying to speeds up the simulation time by increasing the timestep. Any suggestion towards this goal.?
  Reply With Quote

Old   August 26, 2008, 11:45
Default Re: successive increase in timestep
  #5
ousegui
Guest
 
Posts: n/a
Hello If you want to use 0.005 and after 20 timesteps use directly 0.05, you have to make expression like dt=0.005[s]*step((0.1[s]-t)/1[s])+0.05[s]*step((t-0.1[s])/1[s]). Hope it's help Best regards

  Reply With Quote

Old   August 26, 2008, 11:53
Default Re: successive increase in timestep
  #6
John S.
Guest
 
Posts: n/a
You could try using an expression such as

step(20-citern)*((citern-1)*0.0025+0.005) + step(citern-20)*0.05

What this does is at iteration 1 your timestep is 0.005 and it will increment it every iteration until iteration 20 to be 0.05.

Generally, though, if you're having overflow errors with your timestep it could be the timestep you're choosing is too large. I typically like to use about 1/3 of the advection time for my timestep.
  Reply With Quote

Old   August 26, 2008, 13:30
Default Re: successive increase in timestep
  #7
MAB
Guest
 
Posts: n/a
Thanks Jhon, To change the time step through SolverManager . What is the process. Should I click 'Edit Definition File' and save it. or something else needs to be done? Thanks again.
  Reply With Quote

Old   August 26, 2008, 13:38
Default Re: successive increase in timestep
  #8
Rajee Assudani
Guest
 
Posts: n/a
You can click on "Edit Run in Progress" and change the time step to the desired value.
  Reply With Quote

Old   August 26, 2008, 16:55
Default Re: successive increase in timestep
  #9
CycLone
Guest
 
Posts: n/a
An easier way is to create a 1-D interpolation function using the CFX "User Functions" in Pre. There are two variables that relate to the iteration number: "aitern" and "citern", which are the absolute and current iteration numbers respectively.

For your funtion, set the following coordinates:

1, .005 [s]
20, .005 [s]
30, .05 [s]

This will give you a constant value of .005 [s] for iterations 1 though 20, then linearly increase the value to .05 [s] between 20 and 30. Also, check the extend min and max buttons. This will tell the solver to use the last value for all iterations above 30.

To create a user function, just right click on the User Function folder in Pre and insert a new function. The GUI is pretty straighforward and will produce the following CCL:


LIBRARY:
CEL:
FUNCTION: variable timestep
Argument Units = []
Option = Interpolation
Profile Function = Off
Result Units = [s]
INTERPOLATION DATA:
Data Pairs = 1,0.005,20,0.005,30,0.05
Extend Max = On
Extend Min = On
Option = One Dimensional
END
END
END
END


To use the function, enter "variable timestep(aitern)" for your timestep.

-CycLone
  Reply With Quote

Old   August 26, 2008, 19:50
Default Re: successive increase in timestep
  #10
Glenn Horrocks
Guest
 
Posts: n/a
Hi,

Start with a small timestep for a few iterations until the solution starts monotonically converging. Then increase the timestep size using "edit run in progress" in steps, 10x per step is a good start. After a period of monotonic convergence you should be able to increase the timestep to many times bigger than you started with (often 1000x or more).

Glenn Horrocks
  Reply With Quote

Old   September 3, 2008, 11:08
Default Re: successive increase in timestep
  #11
MAB
Guest
 
Posts: n/a
Hi again. I am confused about iteration and timestep. if i say 20th iteration then is it mean 20th timestep. if not. then could you explain bit more.
  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
how to set periodic boundary conditions Ganesh FLUENT 15 November 18, 2020 06:09
How to interrupt unsteady calculation and carry on without timestep increase? aleisia FLUENT 1 March 18, 2011 23:02
Adequate timestep selection for multidomain problem gerardosrez CFX 6 November 28, 2010 17:50
How can I increase Heat Transfer at Domain Interf? B.Simon CFX 3 October 28, 2008 18:53
fluent add additional zones for the mesh file SSL FLUENT 2 January 26, 2008 11:55


All times are GMT -4. The time now is 10:47.