Hello,
I am looking for a way to get field-results (e.g. displacements or stresses) from an analysis that is still running, e.g. a long running dynamic analysis with many steps.
It seems that neither STAT_NON_LINE nor DYNA_NON_LINE offer such a capability.
I thought of running the analysis in several intervals and do the postprocessing after each step, see the following pseudo-code:
DEBUT
# compute 1000 steps in total,
# 10 steps at a time
for i in range(100):
DYNA_NON_LINE # 10 steps
IMPR_RESU # or other types of postprocessing
FIN
Or maybe even running a second analysis which does only the postprocessing. Here the question is if I can access the glob.1 files if FIN was not yet called in the simulation
simulation:
DEBUT
# compute 1000 steps in total,
# 10 steps at a time
for i in range(100):
DYNA_NON_LINE # 10 steps
# trigger postprocessing
FIN
postprocessing:
POURSUITE
IMPR_RESU # or other types of postprocessing
FIN
I would very much appreciate any hints, tips or insights!
Thanks,
Philipp