Changeset 1379 for LMDZ4/branches/LMDZ4V5.0-dev/libf/dyn3dpar
- Timestamp:
- May 6, 2010, 2:19:18 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ4/branches/LMDZ4V5.0-dev/libf/dyn3dpar/etat0_netcdf.F
r1370 r1379 17 17 use regr_lat_time_climoz_m, only: regr_lat_time_climoz 18 18 use conf_phys_m, only: conf_phys 19 ! For parameterization of ozone chemistry: 20 use regr_lat_time_coefoz_m, only: regr_lat_time_coefoz 21 use press_coefoz_m, only: press_coefoz 22 use regr_pr_o3_m, only: regr_pr_o3 19 23 #endif 20 24 !#endif of #ifdef CPP_EARTH … … 145 149 real :: seuil_inversion 146 150 real :: alp_offset 151 logical found 147 152 148 153 integer read_climoz ! read ozone climatology … … 426 431 q3d(:,:,:,1) = qd(:,:,:) 427 432 ! 433 ! Parameterization of ozone chemistry: 434 C Look for ozone tracer: 435 i = 1 436 DO 437 found = tname(i)=="O3" .OR. tname(i)=="o3" 438 if (found .or. i == nqtot) exit 439 i = i + 1 440 end do 441 if (found) then 442 call regr_lat_time_coefoz 443 call press_coefoz 444 call regr_pr_o3(p3d, q3d(:, :, :, i)) 445 C Convert from mole fraction to mass fraction: 446 q3d(:, :, :, i) = q3d(:, :, :, i) * 48. / 29. 447 end if 428 448 429 449 ! Ozone climatology:
Note: See TracChangeset
for help on using the changeset viewer.