Hello,
If you have Matalab, or access to a pc with it, you can use the Matlab- Telemac tools.
nl.mathworks.com/matlabcentral/fileexchange/25021-telemac-tools
With them you can script the merging of your files. As an example of how these tools work, here is a script I use to cut portions of simulations that go wrong.
clear all
clc
%%
%---------------------------------------------------
% SLICE SELAFIN FILES
% useful if a simulation started giving bad
% results after certain timestep, then I slice
% only the good portion of the result file
%---------------------------------------------------
% File you want to slice
sim_file = 'SISRES';
% Initial timestep
dti = 1;
% Final Timestep
dtf = 5184;
% Name you want for result file
res_file = 'Cont_SISRES.sel';
%% Loop to go through timesteps of the SLF file
m = telheadr(sim_file);
fid = telheadw(m,res_file);
for i=dti:dtf
m = telstepr(m,i);
fid = telstepw(m,fid);
end
fclose(m.fid);
fclose(fid);
Regards,
Sebastian