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.
trcini.F90 in branches/2016/dev_r7012_ROBUST5_CNRS/NEMOGCM/NEMO/TOP_SRC – NEMO

source: branches/2016/dev_r7012_ROBUST5_CNRS/NEMOGCM/NEMO/TOP_SRC/trcini.F90 @ 7097

Last change on this file since 7097 was 7097, checked in by lovato, 8 years ago

New top interface : update my_trc and revise structure of TOP component initialisation, see ticket #1782

  • Property svn:keywords set to Id
File size: 12.9 KB
Line 
1MODULE trcini
2   !!======================================================================
3   !!                         ***  MODULE trcini  ***
4   !! TOP :   Manage the passive tracer initialization
5   !!======================================================================
6   !! History :   -   ! 1991-03 (O. Marti)  original code
7   !!            1.0  ! 2005-03 (O. Aumont, A. El Moussaoui) F90
8   !!            2.0  ! 2005-10 (C. Ethe, G. Madec) revised architecture
9   !!            4.0  ! 2011-01 (A. R. Porter, STFC Daresbury) dynamical allocation
10   !!----------------------------------------------------------------------
11#if defined key_top
12   !!----------------------------------------------------------------------
13   !!   'key_top'                                                TOP models
14   !!----------------------------------------------------------------------
15   !!   trc_init  :   Initialization for passive tracer
16   !!   top_alloc :   allocate the TOP arrays
17   !!----------------------------------------------------------------------
18   USE oce_trc         ! shared variables between ocean and passive tracers
19   USE trc             ! passive tracers common variables
20   USE trcnam          ! Namelist read
21   USE daymod          ! calendar manager
22   USE prtctl_trc      ! Print control passive tracers (prt_ctl_trc_init routine)
23   USE trcsub          ! variables to substep passive tracers
24   USE trcrst
25   USE lib_mpp         ! distribued memory computing library
26   USE sbc_oce
27   USE trcice          ! tracers in sea ice
28   USE trcbc,   only : trc_bc_init ! generalized Boundary Conditions
29 
30   IMPLICIT NONE
31   PRIVATE
32   
33   PUBLIC   trc_init   ! called by opa
34
35   !!----------------------------------------------------------------------
36   !! NEMO/TOP 4.0 , NEMO Consortium (2011)
37   !! $Id$
38   !! Software governed by the CeCILL licence     (NEMOGCM/NEMO_CeCILL.txt)
39   !!----------------------------------------------------------------------
40CONTAINS
41   
42   SUBROUTINE trc_init
43      !!---------------------------------------------------------------------
44      !!                     ***  ROUTINE trc_init  ***
45      !!
46      !! ** Purpose :   Initialization of the passive tracer fields
47      !!
48      !! ** Method  : - read namelist
49      !!              - control the consistancy
50      !!              - compute specific initialisations
51      !!              - set initial tracer fields (either read restart
52      !!                or read data or analytical formulation
53      !!---------------------------------------------------------------------
54      !
55      IF( nn_timing == 1 )   CALL timing_start('trc_init')
56      !
57      IF(lwp) WRITE(numout,*)
58      IF(lwp) WRITE(numout,*) 'trc_init : initial set up of the passive tracers'
59      IF(lwp) WRITE(numout,*) '~~~~~~~'
60      !
61      CALL trc_ini_ctl   ! control
62      CALL trc_nam       ! read passive tracers namelists
63      CALL top_alloc()   ! allocate TOP arrays
64      !
65      !
66      IF(lwp) WRITE(numout,*)
67      IF( ln_rsttr .AND. .NOT. lk_offline ) CALL trc_rst_cal( nit000, 'READ' )   ! calendar
68      IF(lwp) WRITE(numout,*)
69      !
70      CALL trc_ini_sms   ! SMS
71      CALL trc_ini_trp   ! passive tracers transport
72      CALL trc_ice_ini   ! Tracers in sea ice
73      !
74      IF(lwp) CALL ctl_opn( numstr, 'tracer.stat', 'REPLACE', 'FORMATTED', 'SEQUENTIAL', -1, numout, lwp , narea )
75      !
76      CALL trc_ini_state  !  passive tracers initialisation : from a restart or from clim
77      IF( nn_dttrc /= 1 ) &
78      CALL trc_sub_ini    ! Initialize variables for substepping passive tracers
79      CALL trc_ini_inv    ! Inventories
80      !
81      IF( nn_timing == 1 )   CALL timing_stop('trc_init')
82      !
83   END SUBROUTINE trc_init
84
85
86   SUBROUTINE trc_ini_ctl
87      !!----------------------------------------------------------------------
88      !!                     ***  ROUTINE trc_ini_ctl  ***
89      !! ** Purpose :        Control  + ocean volume
90      !!----------------------------------------------------------------------
91      INTEGER ::   jk    ! dummy loop indices
92      !
93      ! Define logical parameter ton control dirunal cycle in TOP
94      l_trcdm2dc = ln_dm2dc .OR. ( ln_cpl .AND. ncpl_qsr_freq /= 1 )
95      l_trcdm2dc = l_trcdm2dc  .AND. .NOT. lk_offline
96      IF( l_trcdm2dc .AND. lwp )   CALL ctl_warn( 'Coupling with passive tracers and used of diurnal cycle.',   &
97         &                           'Computation of a daily mean shortwave for some biogeochemical models ' )
98      !
99   END SUBROUTINE trc_ini_ctl
100
101
102   SUBROUTINE trc_ini_inv
103      !!----------------------------------------------------------------------
104      !!                     ***  ROUTINE trc_ini_stat  ***
105      !! ** Purpose :      passive tracers inventories at initialsation phase
106      !!----------------------------------------------------------------------
107      INTEGER ::  jk, jn    ! dummy loop indices
108      CHARACTER (len=25) :: charout
109      !!----------------------------------------------------------------------
110      !                                                              ! masked grid volume
111      DO jk = 1, jpk
112         cvol(:,:,jk) = e1e2t(:,:) * e3t_n(:,:,jk) * tmask(:,:,jk)
113      END DO
114      !                                                              ! total volume of the ocean
115      areatot = glob_sum( cvol(:,:,:) )
116      !
117      trai(:) = 0._wp                                                   ! initial content of all tracers
118      DO jn = 1, jptra
119         trai(jn) = trai(jn) + glob_sum( trn(:,:,:,jn) * cvol(:,:,:)   )
120      END DO
121
122      IF(lwp) THEN               ! control print
123         WRITE(numout,*)
124         WRITE(numout,*)
125         WRITE(numout,*) '          *** Total number of passive tracer jptra = ', jptra
126         WRITE(numout,*) '          *** Total volume of ocean                = ', areatot
127         WRITE(numout,*) '          *** Total inital content of all tracers '
128         WRITE(numout,*)
129         DO jn = 1, jptra
130            WRITE(numout,9000) jn, TRIM( ctrcnm(jn) ), trai(jn)
131         ENDDO
132         WRITE(numout,*)
133      ENDIF
134      IF(lwp) WRITE(numout,*)
135      IF(ln_ctl) THEN            ! print mean trends (used for debugging)
136         CALL prt_ctl_trc_init
137         WRITE(charout, FMT="('ini ')")
138         CALL prt_ctl_trc_info( charout )
139         CALL prt_ctl_trc( tab4d=trn, mask=tmask, clinfo=ctrcnm )
140      ENDIF
1419000  FORMAT(' tracer nb : ',i2,'      name :',a10,'      initial content :',e18.10)
142      !
143   END SUBROUTINE trc_ini_inv
144
145
146   SUBROUTINE trc_ini_sms
147      !!----------------------------------------------------------------------
148      !!                     ***  ROUTINE trc_ini_sms  ***
149      !! ** Purpose :   SMS initialisation
150      !!----------------------------------------------------------------------
151      USE trcini_pisces  ! PISCES   initialisation
152      USE trcini_cfc     ! CFC      initialisation
153      USE trcini_c14     ! C14  initialisation
154      USE trcini_age     ! age initialisation
155      USE trcini_my_trc  ! MY_TRC   initialisation
156      !
157      INTEGER :: jn
158      !!----------------------------------------------------------------------
159      !
160      ! Pass sn_tracer fields to specialized arrays
161      DO jn = 1, jp_bgc
162         ctrcnm    (jn) = TRIM( sn_tracer(jn)%clsname )
163         ctrcln    (jn) = TRIM( sn_tracer(jn)%cllname )
164         ctrcun    (jn) = TRIM( sn_tracer(jn)%clunit  )
165         ln_trc_ini(jn) =       sn_tracer(jn)%llinit
166         ln_trc_sbc(jn) =       sn_tracer(jn)%llsbc
167         ln_trc_cbc(jn) =       sn_tracer(jn)%llcbc
168         ln_trc_obc(jn) =       sn_tracer(jn)%llobc
169      END DO
170      !   
171      IF( ln_pisces  )   CALL trc_ini_pisces     !  PISCES model
172      IF( ln_my_trc  )   CALL trc_ini_my_trc     !  MY_TRC model
173      IF( ll_cfc     )   CALL trc_ini_cfc        !  CFC's
174      IF( ln_c14     )   CALL trc_ini_c14        !  C14 model
175      IF( ln_age     )   CALL trc_ini_age        !  AGE
176      !
177      IF(lwp) THEN                   ! control print
178         WRITE(numout,*) 'ID     NAME     INI  SBC  CBC  OBC'
179         DO jn = 1, jptra
180            WRITE(numout,9001) jn, TRIM(ctrcnm(jn)), ln_trc_ini(jn), ln_trc_sbc(jn),ln_trc_cbc(jn),ln_trc_obc(jn)
181         END DO
182         WRITE(numout,*) ' '
183      ENDIF
1849001  FORMAT(i3,1x,a10,3x,l2,3x,l2,3x,l2,3x,l2)
185      !
186   END SUBROUTINE trc_ini_sms
187
188   SUBROUTINE trc_ini_trp
189      !!----------------------------------------------------------------------
190      !!                     ***  ROUTINE trc_ini_trp  ***
191      !!
192      !! ** Purpose :   Allocate all the dynamic arrays of the OPA modules
193      !!----------------------------------------------------------------------
194      USE trcdmp , ONLY:  trc_dmp_ini
195      USE trcadv , ONLY:  trc_adv_ini
196      USE trcldf , ONLY:  trc_ldf_ini
197      USE trczdf , ONLY:  trc_zdf_ini
198      USE trcrad , ONLY:  trc_rad_ini
199      !
200      INTEGER :: ierr
201      !!----------------------------------------------------------------------
202      !
203      IF( ln_trcdmp )  CALL  trc_dmp_ini          ! damping
204                       CALL  trc_adv_ini          ! advection
205                       CALL  trc_ldf_ini          ! lateral diffusion
206                       CALL  trc_zdf_ini          ! vertical diffusion
207                       CALL  trc_rad_ini          ! positivity of passive tracers
208      !
209   END SUBROUTINE trc_ini_trp
210
211
212   SUBROUTINE trc_ini_state
213      !!----------------------------------------------------------------------
214      !!                     ***  ROUTINE trc_ini_state ***
215      !! ** Purpose :          Initialisation of passive tracer concentration
216      !!----------------------------------------------------------------------
217      USE zpshde          ! partial step: hor. derivative   (zps_hde routine)
218      USE trcrst          ! passive tracers restart
219      USE trcdta          ! initialisation from files
220      !
221      INTEGER :: jn, jl   ! dummy loop indices
222      !!----------------------------------------------------------------------
223      !
224      ! Initialisation of tracers Initial Conditions
225      IF( ln_trcdta )      CALL trc_dta_init(jptra)
226
227      ! Initialisation of tracers Boundary Conditions
228      IF( ln_my_trc )     CALL trc_bc_init(jptra)
229
230      IF( ln_rsttr ) THEN
231        !
232        CALL trc_rst_read              ! restart from a file
233        !
234      ELSE
235        !
236        IF( ln_trcdta .AND. nb_trcdta > 0 ) THEN  ! Initialisation of tracer from a file that may also be used for damping
237            !
238            DO jn = 1, jptra
239               IF( ln_trc_ini(jn) ) THEN      ! update passive tracers arrays with input data read from file
240                  jl = n_trc_index(jn) 
241                  CALL trc_dta( nit000, sf_trcdta(jl), rf_trfac(jl) )   ! read tracer data at nit000
242                  trn(:,:,:,jn) = sf_trcdta(jl)%fnow(:,:,:) 
243                  !
244                  IF( .NOT.ln_trcdmp .AND. .NOT.ln_trcdmp_clo ) THEN      !== deallocate data structure   ==!
245                     !                                                    (data used only for initialisation)
246                     IF(lwp) WRITE(numout,*) 'trc_dta: deallocate data arrays as they are only used to initialize the run'
247                                                  DEALLOCATE( sf_trcdta(jl)%fnow )     !  arrays in the structure
248                     IF( sf_trcdta(jl)%ln_tint )  DEALLOCATE( sf_trcdta(jl)%fdta )
249                     !
250                  ENDIF
251               ENDIF
252            ENDDO
253            !
254        ENDIF
255        !
256        trb(:,:,:,:) = trn(:,:,:,:)
257        !
258      ENDIF
259 
260      tra(:,:,:,:) = 0._wp
261      !                                                         ! Partial top/bottom cell: GRADh(trn)
262   END SUBROUTINE trc_ini_state
263
264   SUBROUTINE top_alloc
265      !!----------------------------------------------------------------------
266      !!                     ***  ROUTINE top_alloc  ***
267      !!
268      !! ** Purpose :   Allocate all the dynamic arrays of the OPA modules
269      !!----------------------------------------------------------------------
270      USE trc           , ONLY:   trc_alloc
271      USE trdtrc_oce    , ONLY:   trd_trc_oce_alloc
272#if defined key_trdmxl_trc 
273      USE trdmxl_trc    , ONLY:   trd_mxl_trc_alloc
274#endif
275      !
276      INTEGER :: ierr
277      !!----------------------------------------------------------------------
278      !
279      ierr =        trc_alloc()
280      ierr = ierr + trd_trc_oce_alloc()
281#if defined key_trdmxl_trc 
282      ierr = ierr + trd_mxl_trc_alloc()
283#endif
284      !
285      IF( lk_mpp    )   CALL mpp_sum( ierr )
286      IF( ierr /= 0 )   CALL ctl_stop( 'STOP', 'top_alloc : unable to allocate standard ocean arrays' )
287      !
288   END SUBROUTINE top_alloc
289
290#else
291   !!----------------------------------------------------------------------
292   !!  Empty module :                                     No passive tracer
293   !!----------------------------------------------------------------------
294CONTAINS
295   SUBROUTINE trc_init                      ! Dummy routine   
296   END SUBROUTINE trc_init
297#endif
298
299   !!======================================================================
300END MODULE trcini
Note: See TracBrowser for help on using the repository browser.