Hi
Thank you very much for your help, that's quite difficult indeed for beginners like me, but I will give it a try.
Could you please give me a hint for another question...
I try to use the compiled telemac systerm "wingfortrans32_v6p2", and have gfortran compiler installed. When i use the subroutine "CONDIN" to initialize the salinity field, it just terminates with the message below. maybe systel.cfg or my revised condin.f is wrong, I'm not sure...
Here is the revised part:
! INITIALISES THE TRACERS
!
IF(NTRAC.GT.0) THEN
DO ITRAC=1,NTRAC
CALL OS( 'X=C ' , X=T%ADR(ITRAC)%P , C=TRAC0(ITRAC) )
DO IPOIN=1,NPOIN
IF(X(IPOIN).LT.190000)THEN
T%ADR(ITRAC)%P%R(IPOIN)=0.D0
ELSE
T%ADR(ITRAC)%P%R(IPOIN)=34.D0
ENDIF
ENDDO
ENDDO
ENDIF
!
Thanks in advance.
Best regard.