The TELEMAC-MASCARET system  trunk
maruti.f
Go to the documentation of this file.
1 ! *****************
2  SUBROUTINE maruti
3 ! *****************
4 !
5  &(nmar,fmtmar)
6 !
7 !***********************************************************************
8 ! TOMAWAC V6P3 21/06/2011
9 !***********************************************************************
10 !
11 !brief READS THE TIDES IN A USER-DEFINED FILE FORMAT.
12 !
13 !history F.MARCOS (LNH)
14 !+ 30/08/95
15 !+ V1P0
16 !+
17 !
18 !history N.DURAND (HRW), S.E.BOURBAN (HRW)
19 !+ 13/07/2010
20 !+ V6P0
21 !+ Translation of French comments within the FORTRAN sources into
22 !+ English comments
23 !
24 !history N.DURAND (HRW), S.E.BOURBAN (HRW)
25 !+ 21/08/2010
26 !+ V6P0
27 !+ Creation of DOXYGEN tags for automated documentation and
28 !+ cross-referencing of the FORTRAN sources
29 !
30 !history G.MATTAROLO (EDF - LNHE)
31 !+ 20/06/2011
32 !+ V6P1
33 !+ Translation of French names of the variables in argument
34 !
35 !history J-M HERVOUET (EDF-LNHE)
36 !+ 23/11/20012
37 !+ V6P3
38 !+ XRELV, YRELV, ZR removed, must be declared locally
39 !+ if necessary.
40 !
41 !~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
42 !| FMTMAR |-->| TIDAL WATER LEVEL FILE FORMAT
43 !| NBOR |-->| GLOBAL NUMBER OF BOUNDARY POINTS
44 !| NMAR |-->| LOGICAL UNIT NUMBER OF TIDAL WATER LEVEL FILE
45 !| NPTFR |-->| NUMBER OF BOUNDARY POINTS
46 !~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
47 !
49  USE interface_tomawac, ex_maruti => maruti
50  IMPLICIT NONE
51 !
52 !
53 !+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
54 !
55  INTEGER, INTENT(IN) :: NMAR
56  CHARACTER(LEN=8), INTENT(IN) :: FMTMAR
57 !
58 !+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
59 !
60  CALL user_tide(nmar,fmtmar)
61 !
62 !-----------------------------------------------------------------------
63 !
64  RETURN
65  END
subroutine maruti(NMAR, FMTMAR)
Definition: maruti.f:7
subroutine user_tide(NMAR, FMTMAR)
Definition: user_tide.f:7