Hello all,
I have a problem to check the basic variables in Telemac2d. I added the following lines at the end of the loop in time of the telemac2d.f subroutine :
IF (MOD(LT,10) .EQ. 0) THEN
WRITE(*,*) 'Dans telemac2d, H%R(27761), ZF%R(27761)', H%R(27761), ZF%R(27761)
END IF
And when I run telemac2d I get something like that :
Dans telemac2d, H%R(27761), ZF%R(27761) -7.69865347810908278E-005 1.0000000000000000
Dans telemac2d, H%R(27761), ZF%R(27761) -7.93443219102472696E-005 1.0000000000000000
Dans telemac2d, H%R(27761), ZF%R(27761) -7.98911250221037651E-005 1.0000000000000000
Dans telemac2d, H%R(27761), ZF%R(27761) -8.17302736537575371E-005 1.0000000000000000
Dans telemac2d, H%R(27761), ZF%R(27761) -8.62501514700171075E-005 1.0000000000000000
Dans telemac2d, H%R(27761), ZF%R(27761) -9.18265564072786477E-005 1.0000000000000000
Dans telemac2d, H%R(27761), ZF%R(27761) -1.02835187693393516E-004 1.0000000000000000
Dans telemac2d, H%R(27761), ZF%R(27761) -1.24989329688729786E-004 1.0000000000000000
Dans telemac2d, H%R(27761), ZF%R(27761) -1.47801657385169009E-004 1.0000000000000000
Dans telemac2d, H%R(27761), ZF%R(27761) -1.63065270983784834E-004 1.0000000000000000
Dans telemac2d, H%R(27761), ZF%R(27761) -1.69170962647473679E-004 1.0000000000000000
Dans telemac2d, H%R(27761), ZF%R(27761) -1.69143571157390687E-004 1.0000000000000000
Dans telemac2d, H%R(27761), ZF%R(27761) -1.67449675146829057E-004 1.0000000000000000
Dans telemac2d, H%R(27761), ZF%R(27761) -1.61873167612440027E-004 1.0000000000000000
Dans telemac2d, H%R(27761), ZF%R(27761) -1.54288692862178151E-004 1.0000000000000000
This doesn't correspond to what I should get : H%R(27761) should be somewhere between 1 and 5 (the area I study is under tidal influence) and ZF%R(27761) should be equal to -9.51m.
My question : is there a problem with the H%R(27761) or the ZF%R(27761) syntax ?