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

Can we restart the simulation from a different time in OpenFoam

Register Blogs Community New Posts Updated Threads Search

Like Tree17Likes

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   May 20, 2016, 16:08
Default how iteration number is calculated in steady state calculation?
  #21
Member
 
Jeff
Join Date: May 2016
Posts: 44
Rep Power: 10
jf_vt is on a distinguished road
Hi Foamers
this is quite a silly question but I am at loss:

If I run a simulation with a simple algorithm with:

startFrom startTime;

startTime 0;

stopAt endTime;

endTime 1000;

deltaT 1;

the log file state as expected that it will run for 1000 iterations ( no convergence criteria)

When I continue the simulation ( after remapping on a finer mesh)

startFrom startTime;

startTime 1000;

stopAt endTime;

endTime 2000;

deltaT 1;

The log file then report that it will run for 2000 iterations while 1000 will be expected.

what do i miss?
Thanks
JF

Last edited by jf_vt; May 20, 2016 at 17:52.
jf_vt is offline   Reply With Quote

Old   May 20, 2016, 17:06
Default
  #22
New Member
 
Matthias
Join Date: Jun 2011
Posts: 8
Rep Power: 14
aeroMatze is on a distinguished road
sorry, my reply was nonsense

Last edited by aeroMatze; May 20, 2016 at 17:08. Reason: too late
aeroMatze is offline   Reply With Quote

Old   May 21, 2016, 18:09
Default
  #23
Senior Member
 
Alexey Matveichev
Join Date: Aug 2011
Location: Nancy, France
Posts: 1,938
Rep Power: 38
alexeym has a spectacular aura aboutalexeym has a spectacular aura about
Send a message via Skype™ to alexeym
@jf_vt

Since your message lacks exact OpenFOAM message, I suppose it is something like:

Code:
SIMPLE: no convergence criteria found. Calculations will run for 2000  steps.
And it is a result of not quite precise wording in simpleControl class constructor:

Code:
if (residualControl_.empty())
{
    Info<< algorithmName_ << ": no convergence criteria found. "
        << "Calculations will run for " << mesh_.time().endTime().value()
        << " steps." << nl << endl;
}
...
Since your endTime is 2000, message says that it will run for 2000 steps.

Maybe it is worth reporting bug (http://bugs.openfoam.org), since for SIMPLE mesh_.time().endTime().value() can be changed to mesh_.time().endTime().value() - mesh_.time().startTime().value().

Yet simpleFoam simulations without convergence criterion is something ridiculous.
alexeym is offline   Reply With Quote

Old   May 21, 2016, 18:21
Default
  #24
Member
 
Jeff
Join Date: May 2016
Posts: 44
Rep Power: 10
jf_vt is on a distinguished road
Thanks
Sorry for the lack of accuracy in my message (As you can easily guess I am pretty new to the forum) but you get it right of course..

As for interrest running simple without convergence algorithm, I agree with you in general but at the moment I am investigating convergence speed while inserting remeshing and field mapping in the process ( this is research not sure where it leads) but in a simplified form:

I run a cas for 1000 step remesh it finer, map fields and run it for another 1000 step ... and so forth... and compare solution quality vs cputime if i run on the finer mesh all the time.

I dont need convergence test for that and this is why I stumbled on this and found it annoying in the context of the work described above.

I reported it as a (small) bug

Thanks for your reply
JF
jf_vt 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
How to write k and epsilon before the abnormal end xiuying OpenFOAM Running, Solving & CFD 8 August 27, 2013 15:33
Cross-compiling OpenFOAM 1.7.0 on Linux for Windows 32 and 64bits with Mingw-w64 wyldckat OpenFOAM Announcements from Other Sources 3 September 8, 2010 06:25
(chtMultiRegionFoam) reducing gravity increase the simulation time ! openfoam1 OpenFOAM 7 March 10, 2010 09:41
PostChannel maka OpenFOAM Post-Processing 5 July 22, 2009 09:15
influence of time step in insationary simulation Sascha Behrens FLUENT 0 December 1, 2005 09:08


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