New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
module_example in branches/UKMO/dev_r5518_GO6_package/NEMOGCM/NEMO/OPA_SRC – NEMO

source: branches/UKMO/dev_r5518_GO6_package/NEMOGCM/NEMO/OPA_SRC/module_example @ 9321

Last change on this file since 9321 was 6486, checked in by davestorkey, 8 years ago

Remove SVN keywords from UKMO/dev_r5518_GO6_package branch.

File size: 10.0 KB
Line 
1MODULE exampl
2   !!======================================================================
3   !!                       ***  MODULE  exampl  ***
4   !! Ocean physics:  brief description of the purpose of the module
5   !!                 (please no more than 2 lines)
6   !!======================================================================
7   !! History : 3.0  !  2008-06  (Author Names)  Original code
8   !!            -   !  2008-08  (Author names)  brief description of modifications
9   !!           3.3  !  2010-11  (Author names)        -              -
10   !!----------------------------------------------------------------------
11#if defined key_example
12   !!----------------------------------------------------------------------
13   !!   'key_example'  :                brief description of the key option
14   !!----------------------------------------------------------------------
15   !!   exa_mpl       : list of module subroutine (caution, never use the
16   !!   exa_mpl_init  : name of the module for a routine)
17   !!   exa_mpl_stp   : Please try to use 3 letter block for routine names
18   !!----------------------------------------------------------------------
19   USE module_name1   ! brief description of the used module
20   USE module_name2   ! ....
21
22   IMPLICIT NONE
23   PRIVATE
24
25   PUBLIC   exa_mpl        ! routine called in xxx.F90 module
26   PUBLIC   exa_mpl_init   ! routine called in nemogcm.F90 module
27
28   TYPE ::   FLD_E                !: Structure type definition
29      CHARACTER(lc) ::   clname      ! clname description (default length, lc, is 256, see par_kind.F90)
30      INTEGER       ::   nfreqh      ! nfreqh description
31   END TYPE FLD_E
32
33   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:,:) ::   var1         !: var1 description. CAUTION always use !: to describe
34   !                                                          !  a PUBLIC variable: simplify its search :
35   !                                                          !  grep var1 *90 | grep '!:'
36   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:,:) ::   var2, var2   !: several variable on a same line OK, but
37   !                                                          !  DO NOT use continuation lines in declaration
38
39   !                               !!* namelist nam_xxx *
40   LOGICAL   ::   ln_opt = .TRUE.   ! give the default value of each namelist parameter
41   CHARACTER ::   cn_tex = 'T'      ! short description  of the variable
42   INTEGER   ::   nn_opt = 1        ! please respect the DOCTOR norm for namelist variable
43   REAL(wp)  ::   rn_var = 2._wp    ! (it becomes easy to identify them in the code)
44   TYPE(FLD) ::   sn_ex             ! structure
45
46   INTEGER                          ::   nint    ! nint  description (local permanent variable)
47   REAL(wp)                         ::   var     ! var         -                -
48   REAL(wp), ALLOCATABLE, SAVE, DIMENSION(:,:,:) ::   array   ! array       -                -
49
50   !! * Substitutions
51#  include "exampl_substitute.h90"
52   !!----------------------------------------------------------------------
53   !! NEMO/OPA 3.3 , NEMO Consortium (2010)
54   !! $Id: module_example 4147 2013-11-04 11:51:55Z cetlod $
55   !! Software governed by the CeCILL licence     (NEMOGCM/NEMO_CeCILL.txt)
56   !!----------------------------------------------------------------------
57CONTAINS
58
59   INTEGER FUNCTION exa_mpl_alloc()
60      !!----------------------------------------------------------------------
61      !!                ***  FUNCTION exa_mpl_alloc  ***
62      !!----------------------------------------------------------------------
63      ALLOCATE( array(jpi,jpj,jpk) , STAT= exa_mpl_alloc )   ! Module array                                                               
64      !
65      IF( lk_mpp             )   CALL mpp_sum ( exa_mpl_alloc )
66      IF( exa_mpl_alloc /= 0 )   CALL ctl_warn('exa_mpl_alloc: failed to allocate arrays')
67      !
68   END FUNCTION exa_mpl_alloc
69   
70
71   SUBROUTINE exa_mpl( kt, pvar1, pvar2, ptab )
72      !!----------------------------------------------------------------------
73      !!                    ***  ROUTINE exa_mpl  ***
74      !!
75      !! ** Purpose :   Brief description of the routine
76      !!
77      !! ** Method  :   description of the methodoloy used to achieve the
78      !!                objectives of the routine. Be as clear as possible!
79      !!
80      !! ** Action  : - first action (share memory array/varible modified
81      !!                in this routine
82      !!              - second action .....
83      !!              - .....
84      !!
85      !! References :   Author et al., Short_name_review, Year
86      !!                Give references if exist otherwise suppress these lines
87      !!----------------------------------------------------------------------
88      USE toto_module      ! description of the module
89      USE wrk_nemo, ONLY:   wrk_in_use, wrk_not_released
90      USE wrk_nemo, ONLY:   zztab => wrk_2d_5                     ! 2D workspace
91      USE wrk_nemo, ONLY:   zwx => wrk_3d_12 , zwy => wrk_3d_13   ! 3D workspace
92      !!
93      INTEGER , INTENT(in   )                     ::   kt      ! short description
94      INTEGER , INTENT(inout)                     ::   pvar1   !   -         -
95      REAL(wp), INTENT(  out)                     ::   pvar2   !   -         -
96      REAL(wp), INTENT(  out), DIMENSION(jpi,jpj) ::   pvar2   !   -         -
97      !!
98      INTEGER  ::   ji, jj, jk       ! dummy loop arguments  (DOCTOR : start with j, but not jp)
99      INTEGER  ::   itoto, itata     ! temporary integers    (DOCTOR : start with i
100      REAL(wp) ::   zmlmin, zbbrau   ! temporary scalars     (DOCTOR : start with z)
101      REAL(wp) ::   zfact1, zfact2   ! do not use continuation lines in declaration
102      !!--------------------------------------------------------------------
103
104      IF( wrk_in_use(3, 12,13) .OR. wrk_in_use(2, 5 ) THEN
105         CALL ctl_stop('exa_mpl: requested workspace arrays unavailable')   ;   RETURN
106      ENDIF
107
108      IF( kt == nit000  )   CALL exa_mpl_init    ! Initialization (first time-step only)
109
110      zmlmin = 1.e-8                             ! Local constant initialization
111      zbbrau =  .5 * ebb / rau0
112      zfact1 = -.5 * rdt * efave
113      zfact2 = 1.5 * rdt * ediss
114
115      SELECT CASE ( npdl )                       ! short description of the action
116      !
117      CASE ( 0 )                                      ! describe case 1
118         DO jk = 2, jpkm1
119            DO jj = 2, jpjm1
120               DO ji = fs_2, fs_jpim1   ! vector opt.
121                  avmv(ji,jj,jk) = ....
122               END DO
123            END DO
124         END DO
125         !
126      CASE ( 1 )                                      ! describe case 2
127         DO jk = 2, jpkm1
128            DO jj = 2, jpjm1
129               DO ji = fs_2, fs_jpim1   ! vector opt.
130                  avmv(ji,jj,jk) = ...
131               END DO
132            END DO
133         END DO
134         !
135      END SELECT
136      !
137      CALL mpplnk2( avmu, 'U', 1. )              ! Lateral boundary conditions (unchanged sign)
138      !
139      IF( wrk_not_released(3, 12,13) .OR. wrk_not_released(2, 5 ) THEN
140         CALL ctl_stop('exa_mpl: failed to release workspace arrays')   ;   RETURN
141      ENDIF
142      !
143   END SUBROUTINE exa_mpl
144
145
146   SUBROUTINE exa_mpl_init
147      !!----------------------------------------------------------------------
148      !!                  ***  ROUTINE exa_mpl_init  ***
149      !!                   
150      !! ** Purpose :   initialization of ....
151      !!
152      !! ** Method  :   blah blah blah ...
153      !!
154      !! ** input   :   Namlist namexa
155      !!
156      !! ** Action  :   ... 
157      !!----------------------------------------------------------------------
158      INTEGER ::   ji, jj, jk, jit   ! dummy loop indices
159      INTEGER  ::   ios              ! Local integer output status for namelist read
160      !!
161      NAMELIST/namexa/ exa_v1, exa_v2, nexa_0, sn_ex     
162      !!----------------------------------------------------------------------
163      !
164      REWIND( numnam_ref )              ! Namelist namexa in reference namelist : Example
165      READ  ( numnam_ref, namexa, IOSTAT = ios, ERR = 901)
166901   IF( ios /= 0 ) CALL ctl_nam ( ios , 'namexa in reference namelist', lwp )
167
168      REWIND( numnam_cfg )              ! Namelist namexa in configuration namelist : Example
169      READ  ( numnam_cfg, namexa, IOSTAT = ios, ERR = 902 )
170902   IF( ios /= 0 ) CALL ctl_nam ( ios , 'namexa in configuration namelist', lwp )
171   ! Output namelist for control
172      WRITE ( numond, namexa )
173      !
174      IF(lwp) THEN                              ! Control print
175         WRITE(numout,*)
176         WRITE(numout,*) 'exa_mpl_init : example '
177         WRITE(numout,*) '~~~~~~~~~~~~'
178         WRITE(numout,*) '   Namelist namexa : set example parameters'
179         WRITE(numout,*) '      brief desciption               exa_v1  = ', exa_v1
180         WRITE(numout,*) '      brief desciption               exa_v2  = ', exa_v2
181         WRITE(numout,*) '      brief desciption               nexa_0  = ', nexa_0
182         WRITE(numout,*) '      brief desciption          sn_ex%clname = ', sn_ex%clname
183         WRITE(numout,*) '      brief desciption          sn_ex%nfreqh = ', sn_ex%nfreqh
184      ENDIF
185      !
186      !                              ! allocate exa_mpl arrays     
187      IF( exa_mpl_alloc() /= 0 )   CALL ctl_stop( 'STOP', 'exa_mpl_init : unable to allocate arrays' )
188      !                              ! Parameter control
189      IF( ln_opt      )   CALL ctl_stop( 'exa_mpl_init: this work and option xxx are incompatible'   )
190      IF( nn_opt == 2 )   CALL ctl_warn( 'exa_mpl_init: this work and option yyy may cause problems' )
191      !
192   END SUBROUTINE exa_mpl_init
193
194#else
195   !!----------------------------------------------------------------------
196   !!   Default option :                                         NO example
197   !!----------------------------------------------------------------------
198CONTAINS
199   SUBROUTINE exa_mpl( kt, pvar1, pvar2, ptab )              ! Empty routine
200      REAL::   ptab(:,:)
201      WRITE(*,*) 'exa_mpl: You should not have seen this print! error?', kt, pvar1, pvar2, ptab(1,1)
202   END SUBROUTINE exa_mpl
203#endif
204
205   !!======================================================================
206END MODULE exampl
Note: See TracBrowser for help on using the repository browser.