Hello Thong,
I tried both version 7.0 and 7.1, with a computation continued with 3 tracers called TOTO1, 2 and 3, with 32 characters in the name, and both versions work. You can see in the history of telemac3d.f that a bug was corrected in version 6.3, that had the same behaviour as you report, but now I do not see what it can be. What you can do:
Take telemac3d.f in your Fortran file. Find the sequence IF(.NOT.DEBU) THEN...
this is where the previous file is read.
At the end of this sequence add:
PRINT*,'NAME 1=',TEXTP3(ADR_TRAC),' TROUVE=',TROUVE(ADR_TRAC)
PRINT*,'NAME 2=',TEXTP3(ADR_TRAC+1),' TROUVE=',TROUVE(ADR_TRAC+1)
You will then see the names of the first 2 tracers taken for looking in the file, and array TROUVE will tell you if they have been found (TROUVE=1 means: found).
If you see nothing add:
PRINT*,'DEBU=',DEBU
before the sequence.
All this will tell you:
* if you are really in a computation continued
* if the variables are found
I suppose that you have checked that your tracers are really in the 3D file, not only in the 2D file.
Then if you do not find I would need your case...
With best regards,
Jean-Michel Hervouet