Hello,
Ok thank you. In view of your steering file I would prefer that you adapt the example canal to your case, to start with. For example the default law of friction is 2 (Chézy) and the default friction coefficient is 60., so you do have friction in your case.
Then you must think of the time step adapted to your case, try to have a time step such that velocity * (mesh size) / DT is around 1 as a guess work.
The example canal is a computation continued because setting all of a sudden the velocity at the entrance in a still basin may trigger waves that take time to vanish. To avoid doing this you can have a FORTRAN FILE in your case, like t3d_Channel.f and you can put inside function Q3 taken in the telemac-3d library of sources. Then you change the line :
Q3=DEBIMP(I)
into:
Q3=DEBIMP(I)*MIN(TIME,100.D0)/100.D0
this will progressively increase the discharge at the entrance from 0 to your value in 100 seconds.
With best regards,
Jean-Michel Hervouet