Error 402 followed by Error 100 in DAMASK simulation #72
-
Dear colleagues, I’m currently facing an issue while running simulations using DAMASK. Briefly, I’m applying a tensile load to a sample at a fixed strain rate. In my initial tests with a relatively small grid (16×16×16), the simulation ran without any problems. However, when I increased the grid size to 128×128×128, I encountered Error 402. After searching this forum, I found that this error might be related to large deformations, and that enabling regridding could be a potential solution (#50). Although my deformation is not very large (engineering strain = 0.12), I tried enabling regridding. Unfortunately, when doing so, I now get Error 100 instead. Has anyone experienced a similar issue or have suggestions on how to solve this? Below are the commands I used to launch the simulations: mpiexec -n 16 DAMASK_grid -j TiTeste2 -l tensionX_1e-3_f_out=625.yaml -g poly_Ti_100_128x128x128.vti -m material.yaml 2>&1 | tee Teste2.log The input files for the simulation, along with the log files containing the error messages, are attached below for your reference: Note 1: I used a high f_out value because I'm only interested in a few output points, and the file size was getting too large with lower values. Any help or insight would be greatly appreciated! Best regards, Leo R D |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
hi, Leo,
which indicates your missing your restart output file "TiTeste2_restart.hdf5", for restart you should defined restart output freequncy through " f_restart: N_r in load yaml file, eg.,
when run the simulation command: which will also output another hdf5 file called "TiTeste2_restart.hdf5" along side with "TiTeste2.hdf5" for storing restart information, then rerun simulation, (see more in #71) one IMPORTANT thing for restart is that make sure the latest output increment in TiTeste2.hdf5 not exceed N_r ( for instance 625 in above case), otherwise will called error shown there already has and can not restart properly. (see more in #35) Hope it helps and best regards, ruanqc |
Beta Was this translation helpful? Give feedback.
hi, Leo,
in your error 100
which indicates your missing your restart output file "TiTeste2_restart.hdf5", for restart you should defined restart output freequncy through " f_restart: N_r in load yaml file, eg.,
when run the simulation command:
…