--
You received this message because you are subscribed to the Google Groups "moose-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to moose-users...@googlegroups.com.
Visit this group at https://groups.google.com/group/moose-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/moose-users/af97c6d3-59ed-48d7-9b8f-ed3bf67b5f86%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Actually, what you are asking for is multiple TimeSteppers, not Executioners. MOOSE currently doesn't support having multiple TimeSteppers in a single simulation, at least not directly. However, there are many options that can get you to a solution.1) Don't worry about adding multiple TimeSteppers. Use one of the adaptive TimeSteppers and just let it go. If your problem is stiff in the beginning, it'll prevent the adaptive stepper from increasing the step size too much to where it can no longer converge a step. Later, it'll allow the growth. It may not give you the minimum number of steps for a particular simulation, but it should get it done with minimal fuss.
2) Consider using one of the TimeSteppers that allows you to control step size over time. We have a FunctionDT TimeStepper, we have a a time "knot" stepper, etc.
3) Advanced: Break you simulation into two parts and use the "Restart" system to continue part 2 after the stiff part of your simulation has completed.There may be other solution, but these are the ones I can think of off the top of my head. Hope this gets you moving in the right direction.
IterationAdaptiveDT allows you to set the time_t and time_dt parameters to specify a set of dt's for specific times to force dt at specific points.
Thank you sincerely for the reply, princessandsuperman,
在 2017年9月7日星期四 UTC+2下午4:35:24,princessandsuperman写道:IterationAdaptiveDT allows you to set the time_t and time_dt parameters to specify a set of dt's for specific times to force dt at specific points.This is also a good iead, I will try it.So if I use***********************************time_t= '1.0 2.0 3.0 4.0'time_dt='1e-10 1e-8 1e-5 1e-3'******************************************Is this means:for 0.0<time<=1.0--------->dt=1.e-101.0<time<=2.0--------->dt=1.e-82.0<time<=3.0--------->dt=1.e-53.0<time<=4.0--------->dt=1.e-3?
--
You received this message because you are subscribed to the Google Groups "moose-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to moose-users...@googlegroups.com.
Visit this group at https://groups.google.com/group/moose-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/moose-users/1df67c41-1aa9-4f7d-b7bc-83c0a1a90146%40googlegroups.com.
On Fri, Sep 8, 2017 at 2:44 AM <walkand...@gmail.com> wrote:Thank you sincerely for the reply, princessandsuperman,
在 2017年9月7日星期四 UTC+2下午4:35:24,princessandsuperman写道:IterationAdaptiveDT allows you to set the time_t and time_dt parameters to specify a set of dt's for specific times to force dt at specific points.This is also a good iead, I will try it.So if I use***********************************time_t= '1.0 2.0 3.0 4.0'time_dt='1e-10 1e-8 1e-5 1e-3'******************************************Is this means:for 0.0<time<=1.0--------->dt=1.e-101.0<time<=2.0--------->dt=1.e-82.0<time<=3.0--------->dt=1.e-53.0<time<=4.0--------->dt=1.e-3?Good question, I believe we have two different steppers one that does linear interpolation between each set of points, and one that does a step function approach: (i.e. constant at each point). Depending on your physics, switching from one time step size to another quickly could cause issues which is why many prefer the linear interpolation approach. You can just have two points with the same DT value if you want it to remain flat, then have a quick transition to your next time so you can effectively get what you want either way.Cody