/[lmdze]/trunk/libf/phylmd/Mobidic/regr_pr_comb_coefoz.f90
ViewVC logotype

Annotation of /trunk/libf/phylmd/Mobidic/regr_pr_comb_coefoz.f90

Parent Directory Parent Directory | Revision Log Revision Log


Revision 11 - (hide annotations)
Thu Jun 5 12:43:08 2008 UTC (16 years ago) by guez
File size: 5224 byte(s)
Added option "-lines" for "nag_fcalls95" in "nag_tools.mk".
Added documentation.
Leading spaces removed in "REPLY" in "etat0_lim.sh".
"gcm.sh" does not require "coefoz_LMDZ.nc" to be present.

1 guez 7 module regr_pr_comb_coefoz_m
2 guez 3
3     ! This module is clean: no C preprocessor directive, no include line.
4    
5     use dimens_m, only: llm
6     use dimphy, only: klon
7    
8     implicit none
9    
10 guez 10 ! The five module variables declared here are on the "physics" grid.
11     ! The value of each variable for index "(i, k)" is at longitude
12     ! "rlon(i)", latitude "rlat(i)" and middle of layer "k".
13    
14 guez 7 real, save:: c_Mob(klon, llm)
15 guez 3 ! (sum of Mobidic terms in the net mass production rate of ozone
16     ! by chemistry, per unit mass of air, in s-1)
17    
18 guez 7 real, save:: a2(klon, llm)
19 guez 3 ! (derivative of mass production rate of ozone per unit mass of
20     ! air with respect to ozone mass fraction, in s-1)
21    
22 guez 7 real, save:: a4_mass(klon, llm)
23 guez 3 ! (derivative of mass production rate of ozone per unit mass of
24     ! air with respect to temperature, in s-1 K-1)
25    
26 guez 7 real, save:: a6_mass(klon, llm)
27 guez 3 ! (derivative of mass production rate of ozone per unit mass of
28     ! air with respect to mass column-density of ozone above, in m2 s-1 kg-1)
29    
30 guez 7 real, save:: r_het_interm(klon, llm)
31 guez 3 ! (net mass production rate by heterogeneous chemistry, per unit
32     ! mass of ozone, corrected for chlorine content and latitude, but
33     ! not for temperature and sun direction, in s-1)
34    
35     private klon, llm
36    
37     contains
38    
39 guez 7 subroutine regr_pr_comb_coefoz(julien)
40 guez 3
41 guez 7 ! "regr_pr_comb_coefoz" stands for "regrid pressure combine
42     ! coefficients ozone".
43 guez 3
44 guez 7 ! This subroutine :
45 guez 10 ! -- reads from a file all eight coefficients for ozone chemistry,
46 guez 7 ! at the current day ;
47 guez 10 ! -- regrids the coefficients in pressure to the LMDZ vertical grid ;
48     ! -- packs the coefficients to the "physics" horizontal grid ;
49     ! -- combines the eight coefficients to define the five module variables.
50 guez 7
51     ! We assume that, in "coefoz_LMDZ.nc", the pressure levels are in hPa
52     ! and strictly increasing.
53    
54     use netcdf95, only: nf95_open, nf95_close, nf95_get_coord
55     use netcdf, only: nf90_nowrite
56     use regr_pr_coefoz, only: regr_pr_av_coefoz, regr_pr_int_coefoz
57 guez 3 use phyetat0_m, only: rlat
58    
59 guez 7 integer, intent(in):: julien ! jour julien, 1 <= julien <= 360
60    
61 guez 3 ! Variables local to the procedure:
62     integer ncid ! for NetCDF
63    
64 guez 7 real, pointer:: plev(:)
65     ! (pressure level of input data, converted to Pa, in strictly
66     ! increasing order)
67    
68     integer n_plev ! number of pressure levels in the input data
69    
70     real, allocatable:: press_in_edg(:)
71     ! (edges of pressure intervals for input data, in Pa, in strictly
72     ! increasing order)
73    
74     real coefoz(klon, llm)
75     ! (temporary storage for an ozone coefficient)
76     ! (On the "physics" grid.
77     ! "coefoz(i, k)" is at longitude "rlon(i)", latitude "rlat(i)",
78     ! middle of layer "k".)
79    
80     real a6(klon, llm)
81     ! (derivative of "P_net_Mob" with respect to column-density of ozone
82 guez 3 ! above, in cm2 s-1)
83     ! (On the "physics" grid.
84 guez 7 ! "a6(i, k)" is at longitude "rlon(i)", latitude "rlat(i)",
85 guez 3 ! middle of layer "k".)
86    
87     real, parameter:: amu = 1.6605402e-27 ! atomic mass unit, in kg
88    
89     real, parameter:: Clx = 3.8e-9
90     ! (total chlorine content in the upper stratosphere)
91    
92 guez 7 integer k
93 guez 3
94     !------------------------------------
95    
96 guez 10 print *, "Call sequence information: regr_pr_comb_coefoz"
97 guez 3
98     call nf95_open("coefoz_LMDZ.nc", nf90_nowrite, ncid)
99    
100 guez 7 call nf95_get_coord(ncid, "plev", plev)
101     ! Convert from hPa to Pa because "regr_pr_av" and "regr_pr_int" require so:
102     plev = plev * 100.
103     n_plev = size(plev)
104 guez 3
105 guez 7 ! Compute edges of pressure intervals:
106     allocate(press_in_edg(n_plev + 1))
107     press_in_edg(1) = 0.
108     ! We choose edges halfway in logarithm:
109     forall (k = 2:n_plev) press_in_edg(k) = sqrt(plev(k - 1) * plev(k))
110     press_in_edg(n_plev + 1) = huge(0.)
111     ! (infinity, but any value guaranteed to be greater than the
112     ! surface pressure would do)
113    
114     call regr_pr_av_coefoz(ncid, "a2", julien, press_in_edg, a2)
115    
116     call regr_pr_av_coefoz(ncid, "a4", julien, press_in_edg, a4_mass)
117     a4_mass = a4_mass * 48. / 29.
118    
119     call regr_pr_av_coefoz(ncid, "a6", julien, press_in_edg, a6)
120    
121 guez 3 ! Compute "a6_mass" avoiding underflow, do not divide by 1e4
122     ! before dividing by molecular mass:
123     a6_mass = a6 / (1e4 * 29. * amu)
124     ! (factor 1e4: conversion from cm2 to m2)
125    
126 guez 7 ! Combine coefficients to get "c_Mob":
127     ! (We use as few local variables as possible, in order to spare
128     ! main memory.)
129 guez 3
130 guez 7 call regr_pr_av_coefoz(ncid, "P_net_Mob", julien, press_in_edg, c_Mob)
131    
132     call regr_pr_av_coefoz(ncid, "r_Mob", julien, press_in_edg, coefoz)
133 guez 9 c_mob = c_mob - a2 * coefoz
134 guez 7
135     call regr_pr_int_coefoz(ncid, "Sigma_Mob", julien, plev, top_value=0., &
136 guez 9 v3=coefoz)
137 guez 7 c_mob = (c_mob - a6 * coefoz) * 48. / 29.
138    
139     call regr_pr_av_coefoz(ncid, "temp_Mob", julien, press_in_edg, coefoz)
140     c_mob = c_mob - a4_mass * coefoz
141    
142     call regr_pr_av_coefoz(ncid, "R_Het", julien, press_in_edg, r_het_interm)
143 guez 3 ! Heterogeneous chemistry is only at high latitudes:
144 guez 7 forall (k = 1: llm)
145     where (abs(rlat) <= 45.) r_het_interm(:, k) = 0.
146 guez 3 end forall
147 guez 11 r_het_interm = r_het_interm * (Clx / 3.8e-9)**2
148 guez 3
149 guez 7 deallocate(plev) ! pointer
150 guez 3 call nf95_close(ncid)
151    
152 guez 7 end subroutine regr_pr_comb_coefoz
153 guez 3
154 guez 7 end module regr_pr_comb_coefoz_m

  ViewVC Help
Powered by ViewVC 1.1.21