Changeset 1425 for LMDZ4/trunk/libf/dyn3d/etat0_netcdf.F90
- Timestamp:
- Sep 2, 2010, 3:45:23 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ4/trunk/libf/dyn3d/etat0_netcdf.F90
r1406 r1425 106 106 INTEGER :: iflag_thermals_ed, iflag_thermals_optflux 107 107 REAL :: tau_thermals, solarlong0, seuil_inversion 108 INTEGER :: read_climoz ! read ozone climatology 108 INTEGER :: read_climoz ! read ozone climatology 109 109 ! Allowed values are 0, 1 and 2 110 110 ! 0: do not read an ozone climatology … … 140 140 iflag_thermals_ed,iflag_thermals_optflux, & 141 141 iflag_coupl,iflag_clos,iflag_wake, read_climoz, & 142 alp_offset 142 alp_offset) 143 143 144 144 ! co2_ppm0 : initial value of atmospheric CO2 from .def file (co2_ppm value) … … 291 291 q3d(:,:,:,:) = 0.0 ; q3d(:,:,:,1) = qd(:,:,:) 292 292 293 ! 294 ! 295 296 297 298 299 300 301 302 303 304 305 ! 306 307 293 ! Parameterization of ozone chemistry: 294 ! Look for ozone tracer: 295 i = 1 296 DO 297 found = tname(i)=="O3" .OR. tname(i)=="o3" 298 if (found .or. i == nqtot) exit 299 i = i + 1 300 end do 301 if (found) then 302 call regr_lat_time_coefoz 303 call press_coefoz 304 call regr_pr_o3(p3d, q3d(:, :, :, i)) 305 ! Convert from mole fraction to mass fraction: 306 q3d(:, :, :, i) = q3d(:, :, :, i) * 48. / 29. 307 end if 308 308 309 309 !--- OZONE CLIMATOLOGY
Note: See TracChangeset
for help on using the changeset viewer.