Hello,
One solution is to modify the routines bief_open_files.f, read_config.f and lecdon_telemac2d.f so as to give the path to the temporary folder of telemac where the temporary files are gathered. Here is for example what I did in read_config.f :
IF(NCAR.GT.0) THEN
CONFIG(1:NCAR+6)=CHAINE(1:NCAR) // 'CONFIG'
NC=NCAR+6
ELSE
#ifdef PALM_LATERAL
CALL LEC_PATH_TMP_FOLDER(path_tmp_folder)
filename=TRIM(ADJUSTL(path_tmp_folder))//'/CONFIG'
NC=LEN(TRIM(ADJUSTL(filename)))
CONFIG(1:NC)=TRIM(ADJUSTL(filename))
#else
CONFIG(1:6)='CONFIG'
NC=6
#endif
where path_tmp_folder is the path to my temporary folder. I have tested this solution and it works :)
Regards