1 | MODULE 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 | USE in_out_manager ! I/O manager |
---|
19 | |
---|
20 | IMPLICIT NONE |
---|
21 | PRIVATE |
---|
22 | |
---|
23 | PUBLIC trc_ini_cfc ! called by trcini.F90 module |
---|
24 | |
---|
25 | CHARACTER (len=34) :: clname = 'cfc1112.atm' ! ??? |
---|
26 | |
---|
27 | INTEGER :: inum ! unit number |
---|
28 | REAL(wp) :: ylats = -10. ! 10 degrees south |
---|
29 | REAL(wp) :: ylatn = 10. ! 10 degrees north |
---|
30 | |
---|
31 | !!---------------------------------------------------------------------- |
---|
32 | !! NEMO/TOP 2.0 , LOCEAN-IPSL (2007) |
---|
33 | !! $Id$ |
---|
34 | !! Software governed by the CeCILL licence (modipsl/doc/NEMO_CeCILL.txt) |
---|
35 | !!---------------------------------------------------------------------- |
---|
36 | |
---|
37 | CONTAINS |
---|
38 | |
---|
39 | SUBROUTINE trc_ini_cfc |
---|
40 | !!---------------------------------------------------------------------- |
---|
41 | !! *** trc_ini_cfc *** |
---|
42 | !! |
---|
43 | !! ** Purpose : initialization for cfc model |
---|
44 | !! |
---|
45 | !! ** Method : - Read the namcfc namelist and check the parameter values |
---|
46 | !!---------------------------------------------------------------------- |
---|
47 | INTEGER :: ji, jj, jn, jl, jm, js |
---|
48 | REAL(wp) :: zyy , zyd |
---|
49 | !!---------------------------------------------------------------------- |
---|
50 | |
---|
51 | IF(lwp) WRITE(numout,*) |
---|
52 | IF(lwp) WRITE(numout,*) ' trc_ini_cfc: initialisation of CFC chemical model' |
---|
53 | IF(lwp) WRITE(numout,*) ' ~~~~~~~~~~~' |
---|
54 | |
---|
55 | |
---|
56 | ! Initialization of boundaries conditions |
---|
57 | ! --------------------------------------- |
---|
58 | xphem (:,:) = 0.e0 |
---|
59 | p_cfc(:,:,:) = 0.e0 |
---|
60 | |
---|
61 | ! Initialization of qint in case of no restart |
---|
62 | !---------------------------------------------- |
---|
63 | qtr_cfc(:,:,:) = 0.e0 |
---|
64 | IF( .NOT. ln_rsttr ) THEN |
---|
65 | IF(lwp) THEN |
---|
66 | WRITE(numout,*) |
---|
67 | WRITE(numout,*) 'Initialization de qint ; No restart : qint equal zero ' |
---|
68 | ENDIF |
---|
69 | qint_cfc(:,:,:) = 0.e0 |
---|
70 | DO jl = 1, jp_cfc |
---|
71 | jn = jp_cfc0 + jl - 1 |
---|
72 | trn (:,:,:,jn) = 0.e0 |
---|
73 | END DO |
---|
74 | ENDIF |
---|
75 | |
---|
76 | |
---|
77 | ! READ CFC partial pressure atmospheric value : |
---|
78 | ! p11(year,nt) = PCFC11 in northern (1) and southern (2) hemisphere |
---|
79 | ! p12(year,nt) = PCFC12 in northern (1) and southern (2) hemisphere |
---|
80 | !-------------------------------------------------------------------- |
---|
81 | |
---|
82 | IF(lwp) WRITE(numout,*) 'read of formatted file cfc1112atm' |
---|
83 | |
---|
84 | CALL ctl_opn( inum, clname, 'OLD', 'FORMATTED', 'SEQUENTIAL', -1, numout, .FALSE. ) |
---|
85 | REWIND(inum) |
---|
86 | |
---|
87 | DO jm = 1, 6 ! Skip over 1st six descriptor lines |
---|
88 | READ(inum,'(1x)') |
---|
89 | END DO |
---|
90 | |
---|
91 | ! file starts in 1931 do jn represent the year in the century.jhh |
---|
92 | ! Read file till the end |
---|
93 | jn = 31 |
---|
94 | DO WHILE ( 1 /= 2 ) |
---|
95 | READ(inum,*,END=100) zyy, p_cfc(jn,1,1), p_cfc(jn,1,2), p_cfc(jn,2,1), p_cfc(jn,2,2) |
---|
96 | IF ( lwp) THEN |
---|
97 | WRITE(numout,'(f7.2, 4f8.2)' ) & |
---|
98 | & zyy, p_cfc(jn,1,1), p_cfc(jn,1,2), p_cfc(jn,2,1), p_cfc(jn,2,2) |
---|
99 | ENDIF |
---|
100 | jn = jn + 1 |
---|
101 | END DO |
---|
102 | 100 npyear = jn - 1 |
---|
103 | IF ( lwp) WRITE(numout,*) ' ', npyear ,' years read' |
---|
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 | !!---------------------------------------------------------------------- |
---|
147 | CONTAINS |
---|
148 | SUBROUTINE trc_ini_cfc ! Empty routine |
---|
149 | END SUBROUTINE trc_ini_cfc |
---|
150 | #endif |
---|
151 | |
---|
152 | !!====================================================================== |
---|
153 | END MODULE trcini_cfc |
---|