Hello,
The subroutine that writes the data on sections is fluxpr_telemac2d, you can add here other writes at your will. If a data is not in the arguments, you can see it by adding it in the list :
USE DECLARATIONS_TELEMAC2D, ONLY : ......
For example if you add H, you will get the depth, H%R(143) being the depth of point 143 (it is more complicated in parallel...).)
Depth is also in the list of the variables for graphic printouts (block VARSOR), in fourth position (see at the end of point_telemac2d), so you have:
H%R(143)=VARSOR%ADR(4)%P%R(143), so it is more complex through VARSOR.
Regards,
Jean-Michel Hervouet