Hello,
I don't know how this could be done in Fudaa, but you can do it with Python using my
pputils project.
There is a script that extract the last time step of each *.slf file, and places is in one file. I did this for my wave library scripting. Assume you have 56 result files in one directory, the script mkwavelibfile.py (bad name I know) will read each *.slf file, extract the last time step, and store it in a new *.slf file. The result file will have 56 time steps (the last time step from each of your 56 runs).
Then to extract the results from a TELEMAC result file at a given node, you would execute this:
python3 extract_pt.py -i result.slf -x 100 -y 100 -o result_100.csv
where -i is your input file, and -x and -y are the coordinates of your point of interest. You will have 56 values of wave height and wave direction in the *.csv file.
I also have a sel2png.py script, that will take a TELEMAC result file, will and automatically generate an image (with vectors if you wish). You would have do this:
python sel2png.py -i input.slf -c sel2png.cfg -v 4 -o output.png -s 0 -e 10
where -i is your input file, -c is the configuration file (where you specify things like colour codes, zoom level, vectors, etc), -v is the index of the variable you want, -o is the name of the output file, and -s and -e are the starting and ending time step for which you want a plot.
Let me know if it works for you,
Pat