Yanis
This problem comes from Windows.
If your result in the temp directory used for the computation is greater than 2 Go, Windows refuse to make the copy at the end of the computation and with the destruction of the temp directory, you lose your result.
When you reduce the number of time step, I suppose your result file is lower than 2 Go, that's why the result exist.
The solutions to avoid this problem:
- check the option "don't destroy the temporary directory at the end of the computation" and make a move (not a copy!) from the file called T2DRES in the directory to the parent folder
- run with the option -t in the DOS command windows
- delete the file called deleteXXX.bat
- try to modify the runcode.pl perl file to change the copy into move but if the move operation failed, you will lose the result (that's why it's a copy for the moment)
Regards