CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > OpenFOAM > OpenFOAM Running, Solving & CFD

Restarting simulations

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   September 5, 2005, 08:36
Default Hi All, Whenever I stop a run
  #1
Member
 
diablo80@web.de
Join Date: Mar 2009
Posts: 93
Rep Power: 17
sampaio is on a distinguished road
Hi All,
Whenever I stop a running case and restart it, my pressure probe signals get a discontinuity...

Why is that? Is there any way around it?

Another thing, it seems to me that whenever I restart a case, I need to use smaller timesteps, eventough foam stores the previous information (from n-1 step). If I dont do this, sometimes I get divergence... Does anyone have the same impression, or know why is that?

Thanks a lot
sampaio is offline   Reply With Quote

Old   September 5, 2005, 08:51
Default If you want accurate restart,
  #2
Senior Member
 
Hrvoje Jasak
Join Date: Mar 2009
Location: London, England
Posts: 1,905
Rep Power: 33
hjasak will become famous soon enough
If you want accurate restart, you need to store your data accurately on disk, which typically means binary. Are you storing your data ascii or binary?

Hrv
__________________
Hrvoje Jasak
Providing commercial FOAM/OpenFOAM and CFD Consulting: http://wikki.co.uk
hjasak is offline   Reply With Quote

Old   September 5, 2005, 08:57
Default Ascii. Where do I set it to b
  #3
Member
 
diablo80@web.de
Join Date: Mar 2009
Posts: 93
Rep Power: 17
sampaio is on a distinguished road
Ascii.
Where do I set it to binary?
Thanks a lot.
sampaio is offline   Reply With Quote

Old   September 5, 2005, 09:04
Default Read the manual: system/contro
  #4
Senior Member
 
Hrvoje Jasak
Join Date: Mar 2009
Location: London, England
Posts: 1,905
Rep Power: 33
hjasak will become famous soon enough
Read the manual: system/controlDict
change

writeFormat ascii;

to

writeFormat binary;
__________________
Hrvoje Jasak
Providing commercial FOAM/OpenFOAM and CFD Consulting: http://wikki.co.uk
hjasak is offline   Reply With Quote

Old   September 6, 2005, 07:17
Default Oops... Sorry for the stupid q
  #5
Member
 
diablo80@web.de
Join Date: Mar 2009
Posts: 93
Rep Power: 17
sampaio is on a distinguished road
Oops... Sorry for the stupid question...

I tried that, but still get discontinuities... By discontinuities I mean a peak, in other words, it does not follow the behaviour of the last run, but pressure goes skyhigh and takes a few iter to stabilize and only then start following the last run tendency...

Anything else that might be causing it?

Is that something expected from numerical schemes that my ignorance does not allow me to recognize?

Thanks again
sampaio is offline   Reply With Quote

Old   September 7, 2005, 03:38
Default Some questions you can investi
  #6
Senior Member
 
Mattijs Janssens
Join Date: Mar 2009
Posts: 1,419
Rep Power: 26
mattijs is on a distinguished road
Some questions you can investigate:

Is this icoFoam/turbFoam? Moving mesh?

Does it depend on
- time differencing (Euler implicit?)
- turbulence model / no turbulence model
- type of boundary conditions

Do you have a flux phi stored? This will be reread if present and should be consistent with the pressure. Try restarting without it.

Is your pressure probe on/next to a boundary?

Are there any unitialized variables? Run it through valgrind.
mattijs is offline   Reply With Quote

Old   September 10, 2005, 13:40
Default Hi Mattijs and Luis Eduardo
  #7
Member
 
Wladimyr Mattos da Costa Dourado
Join Date: Mar 2009
Location: Sao Jose dos Campos, SP, Brazil
Posts: 36
Rep Power: 17
mattos is on a distinguished road
Send a message via Skype™ to mattos
Hi Mattijs and Luis Eduardo

I also have some troubles with restarting simulations. If I try to restart my simulation since FoamX all field begins with initial condition. I need change in the right Dictionary file to sign that I want a rerun (initial time seted up to last time, for example) and not run FoamX.

Somebody can help me how can I use FoamX to make the right thing in order to restart my calculation using FoamX?

Tanks in advance for all

Wladimyr
mattos is offline   Reply With Quote

Old   September 12, 2005, 13:31
Default Hi Wladimyr, Problem is tha
  #8
Senior Member
 
Mattijs Janssens
Join Date: Mar 2009
Posts: 1,419
Rep Power: 26
mattijs is on a distinguished road
Hi Wladimyr,

Problem is that FoamX itself uses the settings from the controlDict.

So any settings in the controlDict controlling the writing of the case have to be set before writing your simulation.

Just edit the controlDict by hand and change the startTime to latestTime and try FoamX again.

(better try all this on a small case)
mattijs is offline   Reply With Quote

Old   July 19, 2006, 08:49
Default serial converges - parallel di
  #9
Senior Member
 
Maka Mohu
Join Date: Mar 2009
Posts: 305
Rep Power: 18
maka is on a distinguished road
serial converges - parallel diverges
I faced that same problem so, I tried to run the tutorial case channelOodles first as sereial and then as parallel on two processors.
startTime 0
endTime 1
the rest of the setup is as the tutorial.
I use Version 1.2

the serial case converges while the parallel one diverge. I noticed the CFL is very different in both cases during the simulation. I run in ascii, as the default of the tutorial. Can any one help explain, why? Thanks.

best regards,
Maka
maka is offline   Reply With Quote

Old   July 20, 2006, 06:08
Default I attach decomposeParDict, see
  #10
Senior Member
 
Maka Mohu
Join Date: Mar 2009
Posts: 305
Rep Power: 18
maka is on a distinguished road
I attach decomposeParDict, see below.
I do not use FoamX.

numberOfSubdomains 2;

method simple;

simpleCoeffs
{
// n
n (2 1 1);
// delta
delta 0.001;
}

hierarchicalCoeffs
{
// n
n (1 1 1);
// delta
delta 0.001;
// order
order xyz;
}

manualCoeffs
{
// Path of decomposition data file
dataFile "";
}

I have seen that same in a modified solver similar to channelOodles when I restart a simulation from parallel pervious steps to the same parallel setup, the CFL goes high. At the moment I would rather start with why this big difference between serial and parallel run? I'm aware that serial and parallel runs may not give the same solutions exactly. Thanks in advance.

best regards,
Maka
maka is offline   Reply With Quote

Old   July 21, 2006, 04:14
Default Use version 1.3. Use standard
  #11
Senior Member
 
Mattijs Janssens
Join Date: Mar 2009
Posts: 1,419
Rep Power: 26
mattijs is on a distinguished road
Use version 1.3. Use standard channelOodles. Check that phi gets written. Report bug if there is a problem.
mattijs is offline   Reply With Quote

Old   July 24, 2006, 08:12
Default Try using the GaussSeidel solv
  #12
Senior Member
 
Eugene de Villiers
Join Date: Mar 2009
Posts: 725
Rep Power: 21
eugene is on a distinguished road
Try using the GaussSeidel solver instead of BICCG, i.e.
change

U BICCG 1e-6 0;

to

U GaussSeidel 1e-6 0 1;

The change tends to improve robustness during startup and on some parallel meshes.
eugene is offline   Reply With Quote

Old   July 24, 2006, 08:47
Default Eugene, Regarding: U Gau
  #13
Senior Member
 
Hrvoje Jasak
Join Date: Mar 2009
Location: London, England
Posts: 1,905
Rep Power: 33
hjasak will become famous soon enough
Eugene,

Regarding:

U GaussSeidel 1e-6 0 1;

That last number makes my eyes hurt: it says how many Gauss-Seidel sweeps I whould do before checking the residual. Basically, evaluation of the residual costs about the same as the Gauss-Seidel sweep, so you should avoid checking too often. I suspect you will do at least 2-3 G-S sweeps to reach the tolerance so please change the number to something between 3 and 5:

U GaussSeidel 1e-6 0 5;

Hrv
__________________
Hrvoje Jasak
Providing commercial FOAM/OpenFOAM and CFD Consulting: http://wikki.co.uk
hjasak is offline   Reply With Quote

Old   July 24, 2006, 11:05
Default Of course if it does more than
  #14
Senior Member
 
Eugene de Villiers
Join Date: Mar 2009
Posts: 725
Rep Power: 21
eugene is on a distinguished road
Of course if it does more than one sweep you should decrease the check frequency. In my experience it needs only 1 or sometimes two sweeps to converge. Then again, I was running steady state, so adjust accordingly.
eugene is offline   Reply With Quote

Old   July 27, 2006, 11:39
Default I retested the case above with
  #15
Senior Member
 
Maka Mohu
Join Date: Mar 2009
Posts: 305
Rep Power: 18
maka is on a distinguished road
I retested the case above with V 1.3 instead of 1.2:

- I used standard channelOodles.
- phi is written
- I test with both backward time diff. (the default) and CrankNicholson.

both serial and prallel restart cases give aprox. the same result.

It seems the what happened before was due to using V 1.2.

do you think I should go and try if using the GaussSeidel on V 1.2 will solve that problem or you have some reason that it was a bug in V 1.2 that was solved in V 1.3?
Thanks for your help

best regards,
Maka
maka is offline   Reply With Quote

Old   August 6, 2007, 10:55
Default Hi everybody, I've a questi
  #16
Senior Member
 
Cedric DUPRAT
Join Date: Mar 2009
Location: Nantes, France
Posts: 195
Rep Power: 17
cedric_duprat is on a distinguished road
Hi everybody,

I've a question for all, my run stop for a memory reason. I clean everything and know, I want to restart my run for my last save.
so I changed the controlDict files but, starting the run, I got this message:
Reading transportProperties

Reading field p



--> FOAM FATAL ERROR : Attempt to cast type patch to type cyclic

From function refCast<to>(From&)
in file /home/dm2/henry/OpenFOAM/OpenFOAM-1.3/src/OpenFOAM/lnInclude/typeInfo.H at line 103.

FOAM aborting

so, I'm not sure f the reason. My saved format is ascii but, .... if I don't want to restart from 0, how can I do ?

any idea?
I used oodles and cyclic patch (everything worked fine before my stop)

I used couplePatches because of cyclic Patch but my geometry is the same so ...:
Mesh has no coupled patches. Nothing changed ...

Thanks,

Cedric
cedric_duprat is offline   Reply With Quote

Old   August 6, 2007, 11:06
Default hi, problem is over just ha
  #17
Senior Member
 
Cedric DUPRAT
Join Date: Mar 2009
Location: Nantes, France
Posts: 195
Rep Power: 17
cedric_duprat is on a distinguished road
hi,
problem is over
just have to change all the cyclic in patch ....
well, just have to read the OF's message.

sorry for disturbing you

Cedric
cedric_duprat is offline   Reply With Quote

Old   October 21, 2007, 13:06
Default Hello everybody, I have a sma
  #18
Senior Member
 
dmoroian's Avatar
 
Dragos
Join Date: Mar 2009
Posts: 648
Rep Power: 20
dmoroian is on a distinguished road
Hello everybody,
I have a small (I hope) problem, similar to the one that Maka had: the computation works serial but diverges in parallel.
Now, few details: I'm running MRFSimpleFoam solver with the same configuration as in mixerVessel2D. My geometry consists in a quadrilateral prism rotating inside a cube. So it is a full 3D geometry with no empty patches.
As a small comparison, I ran mixerVessel2D in serial and paralle on two processors.

As seen above, the continuity error in parallel follows very close the one in serial.
When I tried the same thing for my geometry, the parallel computation follows the serial up to ~80 iterations as seen below.

In order to get a solution, I had to decrease the relatve tolerances in system/fvSolution.
Another question is the memory footprint. Both cases show the same behaviour: the requested amount of memory for parallel computation is much higher than for the serial one.

MRF mixerVessel2D serial
28047 dragos 25 0 63060 14m 9968 R 99 0.7 0:10.01 MRFSimpleFoam

MRF mixerVessel2D parallel
28170 dragos 16 0 304m 15m 11m R 56 0.8 0:01.69 MRFSimpleFoam
28169 dragos 16 0 304m 15m 11m R 56 0.8 0:01.67 MRFSimpleFoam

MRF prism serial
28176 dragos 18 0 67064 18m 9980 R 100 0.9 0:02.35 MRFSimpleFoam

MRF prism parallel
28150 dragos 25 0 306m 17m 11m R 100 0.9 0:04.77 MRFSimpleFoam
28149 dragos 21 0 306m 17m 11m R 100 0.9 0:04.76 MRFSimpleFoam

As shown above (copy/paste from top), it seems that the memory request per processor doesn't decrease, but on the contrary, it increases (16MB -> 304MB).
Anyone wants to comment on these: why different behaviour in parallel than in serial (convergence and memory requirement)?

Dragos
dmoroian is offline   Reply With Quote

Old   October 23, 2007, 03:02
Default There will be some overhead in
  #19
Senior Member
 
Mattijs Janssens
Join Date: Mar 2009
Posts: 1,419
Rep Power: 26
mattijs is on a distinguished road
There will be some overhead in parallel (processor patches&fields) but nowhere near that much. What is your $MPI_BUFFER_SIZE set to? Is the memory resident (use e.g. 'top' command) or just virtual? Does the memory needed increase infinitely while running? What mpi?
mattijs is offline   Reply With Quote

Old   October 24, 2007, 13:51
Default Hi Mattijs, I'm using the def
  #20
Senior Member
 
dmoroian's Avatar
 
Dragos
Join Date: Mar 2009
Posts: 648
Rep Power: 20
dmoroian is on a distinguished road
Hi Mattijs,
I'm using the default openmpi that comes with OpenFOAM-1.4.1, and the value of $MPI_BUFFER_SIZE is also the default one: 20000000
The lines above are already from "top", and the memory request is constant over the entire computation.

Dragos
dmoroian is offline   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
Restarting interDyMFoam hsieh OpenFOAM Bugs 4 January 25, 2009 15:19
Restarting a InterFoam Simulation asaha OpenFOAM Running, Solving & CFD 2 April 11, 2008 15:08
Restarting problem CFD-User Main CFD Forum 0 November 10, 2006 07:42
Restarting KIVA simulation Tomislav Main CFD Forum 2 April 5, 2006 03:22
Compaq DS20 restarting Steve Amphlett Siemens 0 September 6, 2001 04:18


All times are GMT -4. The time now is 05:56.