Hello Toby,
When using UTM plane projection, the 3 keywords LONGITUDE OF ORIGIN POINT, LATITUDE OF ORIGIN POINT and RESULT FILE IN LONGITUDE-LATITUDE are useless.
Can you confirm that you get exactly the same resultats with or without giving a value in the steering file please?
For me, what is the most suspicious is the use of SPHERICAL COORDINATES = YES.
When using SPHERICAL COORDINATES = YES, and if at least one component of OPTION FOR TIDAL BOUNDARY CONDITIONS is not equal to 0, the keyword GEOGRAPHIC SYSTEM is automatically set to 5 (it is needed when interpolation TPXO solution on your mesh).
SPHERICAL COORDINATES = YES with SPATIAL PROJECTION TYPE = 3 may be sensitive to the values given to LONGITUDE OF ORIGIN POINT and LATITUDE OF ORIGIN POINT. I remember to have troubles once with TELEMAC-2D. You can try to change the values a little bit and see if your instabilities are damped or not.
One fix was to have good bathymetry to interpolate when doing the mesh and good care the mesh resolution in particular when bathymetry gradients may be big.
Perhaps you can try to convert your coordinates in longitude/latitude not in UTM but in Mercator? => SPHERICAL COORDINATES = YES + SPATIAL PROJECTION TYPE = 2
You can get the formulae to convert in BORD_TIDAL_BC subroutine ($HOMETEL/sources/telemac2d folder):
DO K=1,NNBTIDE
XL=LAMBDA(K)
YL=PHI(K)
!
! CONVERSION FROM REAL DEGREES TO MERCATOR TELEMAC
!
XM=REARTH*DTR*XL
YM=REARTH*(LOG(TAN((0.5D0*YL +45.D0)*DTR))
& -LOG(TAN((0.5D0*48.D0+45.D0)*DTR)))
[...]
ENDDO
Hope this helps,
Chi-Tuan