Hello,
I am using the V7P2 version of TELEMAC-3D and the implemented culvert code (buse.f)
For tracers, the 3D values used by buse.f and transported through the culvert are the values at the bottom.. line 580 of buse.f :
TBUS%ADR(ITRAC)%P%R(NBUSE+N) = T%ADR(ITRAC)%P%R(I1)
with I1 is the number of first point of the culvert in MESH2D.
I wonder why the vertical position of the culvert is not used here. The corresponding plane has been computed in findksce.f (KENTBUS and KSORBUS)
Do you think that this modification is correct :
TBUS%ADR(ITRAC)%P%R(NBUSE+N) = T%ADR(ITRAC)%P%R(I1+(KSCE(NPTSCE+1+N)-1)*NPOIN2) ?
Thanks !
Vincent