Hi,
I'm modelling a river with bedload transport of 6 clasess of sediments diamters using Sisyphe coupled with telemac2d.
I'm trying to set zero evolution at the inlet boundary condition, but i haven't had success.
I tried with:
- Setting in the boundary condition file, LIEBOR=5, and EBOR=0 at the boundary condition.
It didn't works so I modify de conlite.f file:
LIEBOR%I(K)=KENT
LIQBOR%I(K)=KENT
if (BOUNDARY_COLOUR%I(K) .ge. 5510 .and. BOUNDARY_COLOUR%I(K) .le. 5556) then
QBOR%ADR(1)%P%R(K)=0.013D0
QBOR%ADR(2)%P%R(K)=0.013D0
QBOR%ADR(3)%P%R(K)=0.013D0
QBOR%ADR(4)%P%R(K)=0.013D0
QBOR%ADR(5)%P%R(K)=0.0065106D0
QBOR%ADR(6)%P%R(K)=0.0065106D0
EBOR%ADR(1)%P%R(K)=0.D0
EBOR%ADR(2)%P%R(K)=0.D0
EBOR%ADR(3)%P%R(K)=0.D0
EBOR%ADR(4)%P%R(K)=0.D0
EBOR%ADR(5)%P%R(K)=0.D0
EBOR%ADR(6)%P%R(K)=0.D0
.
.
.
It didn't work. For that reason I modify the noerod.f file:
CALL OV('X=Y+C ',ZR,ZF,ZF,-100.D0,NPOIN)
do K=1,NPOIN
if (BOUNDARY_COLOUR%I(K) .ge. 5510 .and. BOUNDARY_COLOUR%I(K) .le. 5556) then
ZR(K)=ZF(K)
end if
end do
It didn't work too.
what could be happening?
I attached the boundary condition file, noerod.f, conlit.f file and the .cas file.
Best regards,
Gonzalo