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

source: trunk/NEMO/TOP_SRC/CFC/trcini_cfc.F90 @ 1255

Last change on this file since 1255 was 1255, checked in by cetlod, 15 years ago

minor modifications in all top models, see ticket:299

  • Property svn:keywords set to Id
File size: 5.7 KB
Line 
1MODULE trcini_cfc
2   !!======================================================================
3   !!                         ***  MODULE trcini_cfc  ***
4   !! TOP :   initialisation of the CFC tracers
5   !!======================================================================
6   !! History :   2.0  !  2007-12  (C. Ethe, G. Madec) from trcini.cfc.h90
7   !!----------------------------------------------------------------------
8#if defined key_cfc
9   !!----------------------------------------------------------------------
10   !!   'key_cfc'                                               CFC tracers
11   !!----------------------------------------------------------------------
12   !! trc_ini_cfc      : CFC model initialisation
13   !!----------------------------------------------------------------------
14   USE oce_trc         ! Ocean variables
15   USE par_trc         ! TOP parameters
16   USE trc             ! TOP variables
17   USE trcsms_cfc          ! CFC sms trends
18
19   IMPLICIT NONE
20   PRIVATE
21
22   PUBLIC   trc_ini_cfc   ! called by trcini.F90 module
23
24   CHARACTER (len=34) ::   clname = 'cfc1112.atm'   ! ???
25
26   INTEGER  ::   inum                   ! unit number
27   REAL(wp) ::   ylats = -10.           ! 10 degrees south
28   REAL(wp) ::   ylatn =  10.           ! 10 degrees north
29
30   !!----------------------------------------------------------------------
31   !! NEMO/TOP 2.0 , LOCEAN-IPSL (2007)
32   !! $Id$
33   !! Software governed by the CeCILL licence (modipsl/doc/NEMO_CeCILL.txt)
34   !!----------------------------------------------------------------------
35
36CONTAINS
37
38   SUBROUTINE trc_ini_cfc
39      !!----------------------------------------------------------------------
40      !!                     ***  trc_ini_cfc  *** 
41      !!
42      !! ** Purpose :   initialization for cfc model
43      !!
44      !! ** Method  : - Read the namcfc namelist and check the parameter values
45      !!----------------------------------------------------------------------
46      INTEGER  ::   ji, jj, jn, jl, jm, js
47      REAL(wp) ::   zyy  ,  zyd
48      !!----------------------------------------------------------------------
49
50      IF(lwp) WRITE(numout,*)
51      IF(lwp) WRITE(numout,*) ' trc_ini_cfc: initialisation of CFC chemical model'
52      IF(lwp) WRITE(numout,*) ' ~~~~~~~~~~~'
53
54
55      ! Initialization of boundaries conditions
56      ! ---------------------------------------
57      xphem (:,:)    = 0.e0
58      DO jl = 1, jp_cfc
59         jn = jp_cfc0 + jl - 1
60         DO jm = 1, jphem
61            DO js = 1, jpyear
62               p_cfc(js,jm,jn) = 0.0
63            END DO
64         END DO
65      END DO
66     
67     
68      ! Initialization of qint in case of  no restart
69      !----------------------------------------------
70      qtr_cfc(:,:,:) = 0.e0
71      IF( .NOT. lrsttr ) THEN   
72         IF(lwp) THEN
73            WRITE(numout,*)
74            WRITE(numout,*) 'Initialization de qint ; No restart : qint equal zero '
75         ENDIF
76         DO jl = 1, jp_cfc
77            jn = jp_cfc0 + jl - 1
78            trn     (:,:,:,jn) = 0.e0
79            qint_cfc(:,:  ,jn) = 0.e0
80         END DO
81      ENDIF
82
83
84      !   READ CFC partial pressure atmospheric value :
85      !     p11(year,nt) = PCFC11  in northern (1) and southern (2) hemisphere
86      !     p12(year,nt) = PCFC12  in northern (1) and southern (2) hemisphere
87      !--------------------------------------------------------------------
88
89      IF(lwp) WRITE(numout,*) 'read of formatted file cfc1112atm'
90     
91      CALL ctlopn( inum, clname, 'OLD', 'FORMATTED', 'SEQUENTIAL',   &
92         &           1, numout, .FALSE., 1 )
93      REWIND(inum)
94     
95      DO jm = 1, 6        ! Skip over 1st six descriptor lines
96         READ(inum,'(1x)')
97      END DO
98   
99      DO jn = 31, 98      !   Read file
100         READ(inum,*) zyy, p_cfc(jn,1,1), p_cfc(jn,1,2), p_cfc(jn,2,1), p_cfc(jn,2,2)
101         WRITE(numout,'(f7.2, 4f8.2)' ) &
102            &         zyy, p_cfc(jn,1,1), p_cfc(jn,1,2), p_cfc(jn,2,1), p_cfc(jn,2,2)
103      END DO
104
105      p_cfc(32,1:2,1) = 5.e-4      ! modify the values of the first years
106      p_cfc(33,1:2,1) = 8.e-4
107      p_cfc(34,1:2,1) = 1.e-6
108      p_cfc(35,1:2,1) = 2.e-3
109      p_cfc(36,1:2,1) = 4.e-3
110      p_cfc(37,1:2,1) = 6.e-3
111      p_cfc(38,1:2,1) = 8.e-3
112      p_cfc(39,1:2,1) = 1.e-2
113     
114      IF(lwp) THEN        ! Control print
115         WRITE(numout,*)
116         WRITE(numout,*) ' Year   p11HN    p11HS    p12HN    p12HS '
117         DO jn = 30, 100
118            WRITE(numout, '( 1I4, 4F9.2)')   &
119               &         jn, p_cfc(jn,1,1), p_cfc(jn,2,1), p_cfc(jn,1,2), p_cfc(jn,2,2)
120         END DO
121      ENDIF
122
123
124      ! Interpolation factor of atmospheric partial pressure
125      ! Linear interpolation between 2 hemispheric function of latitud between ylats and ylatn
126      !---------------------------------------------------------------------------------------
127      zyd = ylatn - ylats     
128      DO jj = 1 , jpj
129         DO ji = 1 , jpi
130            IF(     gphit(ji,jj) >= ylatn ) THEN   ;   xphem(ji,jj) = 1.e0
131            ELSEIF( gphit(ji,jj) <= ylats ) THEN   ;   xphem(ji,jj) = 0.e0
132            ELSE                                   ;   xphem(ji,jj) = ( gphit(ji,jj) - ylats) / zyd
133            ENDIF
134         END DO
135      END DO
136      !
137
138      IF(lwp) WRITE(numout,*) 'Initialization of CFC tracers done'
139      IF(lwp) WRITE(numout,*) ' '
140
141   END SUBROUTINE trc_ini_cfc
142   
143#else
144   !!----------------------------------------------------------------------
145   !!   Dummy module                                         No CFC tracers
146   !!----------------------------------------------------------------------
147CONTAINS
148   SUBROUTINE trc_ini_cfc             ! Empty routine
149   END SUBROUTINE trc_ini_cfc
150#endif
151
152   !!======================================================================
153END MODULE trcini_cfc
Note: See TracBrowser for help on using the repository browser.