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.
trcdta.F90 in trunk/NEMOGCM/NEMO/TOP_SRC – NEMO

source: trunk/NEMOGCM/NEMO/TOP_SRC/trcdta.F90 @ 3294

Last change on this file since 3294 was 3294, checked in by rblod, 12 years ago

Merge of 3.4beta into the trunk

  • Property svn:keywords set to Id
File size: 13.5 KB
Line 
1MODULE trcdta
2   !!======================================================================
3   !!                     ***  MODULE  trcdta  ***
4   !! TOP :  reads passive tracer data
5   !!=====================================================================
6   !! History :   1.0  !  2002-04  (O. Aumont)  original code
7   !!              -   !  2004-03  (C. Ethe)  module
8   !!              -   !  2005-03  (O. Aumont, A. El Moussaoui) F90
9   !!            3.4   !  2010-11  (C. Ethe, G. Madec)  use of fldread + dynamical allocation
10   !!----------------------------------------------------------------------
11#if  defined key_top 
12   !!----------------------------------------------------------------------
13   !!   'key_top'                                                TOP model
14   !!----------------------------------------------------------------------
15   !!   trc_dta    : read and time interpolated passive tracer data
16   !!----------------------------------------------------------------------
17   USE par_trc       !  passive tracers parameters
18   USE oce_trc       !  shared variables between ocean and passive tracers
19   USE trc           !  passive tracers common variables
20   USE iom           !  I/O manager
21   USE lib_mpp       !  MPP library
22   USE fldread       !  read input fields
23
24   IMPLICIT NONE
25   PRIVATE
26
27   PUBLIC   trc_dta         ! called in trcini.F90 and trcdmp.F90
28   PUBLIC   trc_dta_init    ! called in trcini.F90
29
30   INTEGER  , SAVE, PUBLIC                             :: nb_trcdta   ! number of tracers to be initialised with data
31   INTEGER  , SAVE, PUBLIC, ALLOCATABLE, DIMENSION(:)  :: n_trc_index ! indice of tracer which is initialised with data
32   INTEGER  , SAVE                                     :: ntra        ! MAX( 1, nb_trcdta ) to avoid compilation error with bounds checking
33   REAL(wp) , SAVE,         ALLOCATABLE, DIMENSION(:)  :: rf_trfac    ! multiplicative factor for tracer values
34   TYPE(FLD), SAVE,         ALLOCATABLE, DIMENSION(:)  :: sf_trcdta   ! structure of input SST (file informations, fields read)
35
36   !! * Substitutions
37#  include "domzgr_substitute.h90"
38   !!----------------------------------------------------------------------
39   !! NEMO/OPA 3.3 , NEMO Consortium (2010)
40   !! $Id$
41   !! Software governed by the CeCILL licence     (NEMOGCM/NEMO_CeCILL.txt)
42   !!----------------------------------------------------------------------
43CONTAINS
44
45   SUBROUTINE trc_dta_init
46      !!----------------------------------------------------------------------
47      !!                   ***  ROUTINE trc_dta_init  ***
48      !!                   
49      !! ** Purpose :   initialisation of passive tracer input data
50      !!
51      !! ** Method  : - Read namtsd namelist
52      !!              - allocates passive tracer data structure
53      !!----------------------------------------------------------------------
54      !
55      INTEGER            :: jl, jn                   ! dummy loop indicies
56      INTEGER            :: ierr0, ierr1, ierr2, ierr3       ! temporary integers
57      CHARACTER(len=100) :: clndta, clntrc
58      REAL(wp)           :: zfact
59      !
60      CHARACTER(len=100) :: cn_dir
61      TYPE(FLD_N), DIMENSION(jptra) :: slf_i     ! array of namelist informations on the fields to read
62      TYPE(FLD_N), DIMENSION(jptra) :: sn_trcdta
63      REAL(wp)   , DIMENSION(jptra) :: rn_trfac    ! multiplicative factor for tracer values
64      !!
65      NAMELIST/namtrc_dta/ sn_trcdta, cn_dir, rn_trfac 
66      !!----------------------------------------------------------------------
67      !
68      IF( nn_timing == 1 )  CALL timing_start('trc_dta_init')
69      !
70      !  Initialisation
71      ierr0 = 0  ;  ierr1 = 0  ;  ierr2 = 0  ;  ierr3 = 0 
72      ! Compute the number of tracers to be initialised with data
73      ALLOCATE( n_trc_index(jptra), STAT=ierr0 )
74      IF( ierr0 > 0 ) THEN
75         CALL ctl_stop( 'trc_nam: unable to allocate n_trc_index' )   ;   RETURN
76      ENDIF
77      nb_trcdta      = 0
78      n_trc_index(:) = 0
79      DO jn = 1, jptra
80         IF( ln_trc_ini(jn) ) THEN
81             nb_trcdta       = nb_trcdta + 1 
82             n_trc_index(jn) = nb_trcdta 
83         ENDIF
84      ENDDO
85      !
86      ntra = MAX( 1, nb_trcdta )   ! To avoid compilation error with bounds checking
87      WRITE(numout,*) ' '
88      WRITE(numout,*) ' number of passive tracers to be initialize by data :', ntra
89      WRITE(numout,*) ' '
90      !                         ! allocate the arrays (if necessary)
91      !
92      cn_dir  = './'            ! directory in which the model is executed
93      DO jn = 1, jptra
94         WRITE( clndta,'("TR_",I1)' ) jn
95         clndta = TRIM( clndta )
96         !                 !  file      ! frequency ! variable  ! time intep !  clim   ! 'yearly' or ! weights  ! rotation !
97         !                 !  name      !  (hours)  !  name     !   (T/F)    !  (T/F)  !  'monthly'  ! filename ! pairs    !
98         sn_trcdta(jn)  = FLD_N( clndta ,   -1      , clndta    ,  .false.   , .true.  ,  'monthly'  , ''       , ''       )
99         !
100         rn_trfac(jn) = 1._wp
101      END DO
102      !
103      REWIND( numnat )               ! read nattrc
104      READ  ( numnat, namtrc_dta )
105
106      IF( lwp ) THEN
107         DO jn = 1, jptra
108            IF( ln_trc_ini(jn) )  THEN    ! open input file only if ln_trc_ini(jn) is true
109               clndta = TRIM( sn_trcdta(jn)%clvar ) 
110               clntrc = TRIM( ctrcnm   (jn)       ) 
111               zfact  = rn_trfac(jn)
112               IF( clndta /=  clntrc ) THEN
113                  CALL ctl_warn( 'trc_dta_init: passive tracer data initialisation :  ',   &
114                  &              'the variable name in the data file : '//clndta//   & 
115                  &              '  must be the same than the name of the passive tracer : '//clntrc//' ')
116               ENDIF
117               WRITE(numout,*) ' read an initial file for passive tracer number :', jn, ' name : ', clndta, & 
118               &               ' multiplicative factor : ', zfact
119            ENDIF
120         END DO
121      ENDIF
122      !
123      IF( nb_trcdta > 0 ) THEN       !  allocate only if the number of tracer to initialise is greater than zero
124         ALLOCATE( sf_trcdta(nb_trcdta), rf_trfac(nb_trcdta), STAT=ierr1 )
125         IF( ierr1 > 0 ) THEN
126            CALL ctl_stop( 'trc_dta_ini: unable to allocate  sf_trcdta structure' )   ;   RETURN
127         ENDIF
128         !
129         DO jn = 1, jptra
130            IF( ln_trc_ini(jn) ) THEN      ! update passive tracers arrays with input data read from file
131               jl = n_trc_index(jn)
132               slf_i(jl)    = sn_trcdta(jn)
133               rf_trfac(jl) = rn_trfac(jn)
134                                            ALLOCATE( sf_trcdta(jl)%fnow(jpi,jpj,jpk)   , STAT=ierr2 )
135               IF( sn_trcdta(jn)%ln_tint )  ALLOCATE( sf_trcdta(jl)%fdta(jpi,jpj,jpk,2) , STAT=ierr3 )
136               IF( ierr2 + ierr3 > 0 ) THEN
137                 CALL ctl_stop( 'trc_dta : unable to allocate passive tracer data arrays' )   ;   RETURN
138               ENDIF
139            ENDIF
140            !   
141         ENDDO
142         !                         ! fill sf_trcdta with slf_i and control print
143         CALL fld_fill( sf_trcdta, slf_i, cn_dir, 'trc_dta', 'Passive tracer data', 'namtrc' )
144         !
145      ENDIF
146      !
147      IF( nn_timing == 1 )  CALL timing_stop('trc_dta_init')
148      !
149   END SUBROUTINE trc_dta_init
150
151
152   SUBROUTINE trc_dta( kt, ptrc )
153      !!----------------------------------------------------------------------
154      !!                   ***  ROUTINE trc_dta  ***
155      !!                   
156      !! ** Purpose :   provides passive tracer data at kt
157      !!
158      !! ** Method  : - call fldread routine
159      !!              - s- or mixed z-s coordinate: vertical interpolation on model mesh
160      !!              - ln_trcdmp=F: deallocates the data structure as they are not used
161      !!
162      !! ** Action  :   ptrc   passive tracer data on medl mesh and interpolated at time-step kt
163      !!----------------------------------------------------------------------
164      INTEGER                     , INTENT(in   ) ::   kt     ! ocean time-step
165      REAL(wp), DIMENSION(:,:,:,:), INTENT(  out) ::   ptrc   ! passive tracer data
166      !
167      INTEGER ::   ji, jj, jk, jl, jn, jkk, ik    ! dummy loop indicies
168      REAL(wp)::   zl, zi
169      REAL(wp), DIMENSION(jpk) ::  ztp                ! 1D workspace
170      CHARACTER(len=100) :: clndta
171      !!----------------------------------------------------------------------
172      !
173      IF( nn_timing == 1 )  CALL timing_start('trc_dta')
174      !
175      IF( nb_trcdta > 0 ) THEN
176         !
177         CALL fld_read( kt, 1, sf_trcdta )      !==   read data at kt time step   ==!
178         !
179         DO jn = 1, ntra
180            ptrc(:,:,:,jn) = sf_trcdta(jn)%fnow(:,:,:)    ! NO mask
181         ENDDO
182         !
183         IF( ln_sco ) THEN                   !==   s- or mixed s-zps-coordinate   ==!
184            !
185            IF( kt == nit000 .AND. lwp )THEN
186               WRITE(numout,*)
187               WRITE(numout,*) 'trc_dta: interpolates passive tracer data onto the s- or mixed s-z-coordinate mesh'
188            ENDIF
189            !
190            DO jn = 1, ntra
191               DO jj = 1, jpj                         ! vertical interpolation of T & S
192                  DO ji = 1, jpi
193                     DO jk = 1, jpk                        ! determines the intepolated T-S profiles at each (i,j) points
194                        zl = fsdept_0(ji,jj,jk)
195                        IF(     zl < gdept_0(1  ) ) THEN          ! above the first level of data
196                           ztp(jk) =  ptrc(ji,jj,1    ,jn)
197                        ELSEIF( zl > gdept_0(jpk) ) THEN          ! below the last level of data
198                           ztp(jk) =  ptrc(ji,jj,jpkm1,jn)
199                        ELSE                                      ! inbetween : vertical interpolation between jkk & jkk+1
200                           DO jkk = 1, jpkm1                                  ! when  gdept(jkk) < zl < gdept(jkk+1)
201                              IF( (zl-gdept_0(jkk)) * (zl-gdept_0(jkk+1)) <= 0._wp ) THEN
202                                 zi = ( zl - gdept_0(jkk) ) / (gdept_0(jkk+1)-gdept_0(jkk))
203                                 ztp(jk) = ptrc(ji,jj,jkk,jn) + ( ptrc(ji,jj,jkk+1,jn) - ptrc(ji,jj,jkk,jn) ) * zi 
204                              ENDIF
205                           END DO
206                        ENDIF
207                     END DO
208                     DO jk = 1, jpkm1
209                        ptrc(ji,jj,jk,jn) = ztp(jk) * tmask(ji,jj,jk)     ! mask required for mixed zps-s-coord
210                     END DO
211                     ptrc(ji,jj,jpk,jn) = 0._wp
212                  END DO
213               END DO
214            ENDDO 
215            !
216         ELSE                                !==   z- or zps- coordinate   ==!
217            !                             
218            DO jn = 1, ntra
219               ptrc(:,:,:,jn) = ptrc(:,:,:,jn) * tmask(:,:,:)    ! Mask
220               !
221               IF( ln_zps ) THEN                      ! zps-coordinate (partial steps) interpolation at the last ocean level
222                  DO jj = 1, jpj
223                     DO ji = 1, jpi
224                        ik = mbkt(ji,jj) 
225                        IF( ik > 1 ) THEN
226                           zl = ( gdept_0(ik) - fsdept_0(ji,jj,ik) ) / ( gdept_0(ik) - gdept_0(ik-1) )
227                           ptrc(ji,jj,ik,jn) = (1.-zl) * ptrc(ji,jj,ik,jn) + zl * ptrc(ji,jj,ik-1,jn)
228                        ENDIF
229                     END DO
230                  END DO
231               ENDIF
232            ENDDO 
233            !
234         ENDIF
235         !
236         DO jn = 1, ntra
237            ptrc(:,:,:,jn) = ptrc(:,:,:,jn) * rf_trfac(jn)   !  multiplicative factor
238         ENDDO 
239         !
240         IF( lwp .AND. kt == nit000 ) THEN
241            DO jn = 1, ntra
242               clndta = TRIM( sf_trcdta(jn)%clvar ) 
243               WRITE(numout,*) ''//clndta//' data '
244               WRITE(numout,*)
245               WRITE(numout,*)'  level = 1'
246               CALL prihre( ptrc(:,:,1    ,jn), jpi, jpj, 1, jpi, 20, 1, jpj, 20, 1., numout )
247               WRITE(numout,*)'  level = ', jpk/2
248               CALL prihre( ptrc(:,:,jpk/2,jn), jpi, jpj, 1, jpi, 20, 1, jpj, 20, 1., numout )
249               WRITE(numout,*)'  level = ', jpkm1
250               CALL prihre( ptrc(:,:,jpkm1,jn), jpi, jpj, 1, jpi, 20, 1, jpj, 20, 1., numout )
251               WRITE(numout,*)
252            ENDDO
253         ENDIF
254         !
255         IF( .NOT.ln_trcdmp ) THEN                   !==   deallocate data structure   ==!
256            !                                              (data used only for initialisation)
257            IF(lwp) WRITE(numout,*) 'trc_dta: deallocate data arrays as they are only use to initialize the run'
258            DO jn = 1, ntra
259                                             DEALLOCATE( sf_trcdta(jn)%fnow )     !  arrays in the structure
260               IF( sf_trcdta(jn)%ln_tint )   DEALLOCATE( sf_trcdta(jn)%fdta )
261            ENDDO
262                                             DEALLOCATE( sf_trcdta          )     ! the structure itself
263            !
264         ENDIF
265         !
266      ENDIF
267      !
268      IF( nn_timing == 1 )  CALL timing_stop('trc_dta')
269      !
270   END SUBROUTINE trc_dta
271#else
272   !!----------------------------------------------------------------------
273   !!   Dummy module                              NO 3D passive tracer data
274   !!----------------------------------------------------------------------
275CONTAINS
276   SUBROUTINE trc_dta( kt )        ! Empty routine
277      WRITE(*,*) 'trc_dta: You should not have seen this print! error?', kt
278   END SUBROUTINE trc_dta
279#endif
280   !!======================================================================
281END MODULE trcdta
Note: See TracBrowser for help on using the repository browser.