Adjusting Executioner parameters during runtime or setting a Stopping criterion #19112
-
|
I am just starting into using MOOSE, so I apologize if this is covered in a test input somewhere, but I haven't located one yet. The analysis I am considering is of a multi element/material model, but I'll describe a simple problem by analogy. Thank you, Tim |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
|
Hi Tim You can use the steady state detection option, explained here For a custom termination criteria, you can also use a Terminator https://mooseframework.inl.gov/source/userobject/Terminator.html Guillaume |
Beta Was this translation helpful? Give feedback.
Hi Tim
You can use the steady state detection option, explained here
https://mooseframework.inl.gov/source/executioners/Transient.html. It will terminate the transient in time based on the residual
For a custom termination criteria, you can also use a Terminator https://mooseframework.inl.gov/source/userobject/Terminator.html
You ll have to use postprocessors to retrieve terms in the criteria you want, then a formula can be parsed by the Terminator in the
expressionfield. I think this will crash the simulation on request though! Might not be the end you wantGuillaume