! ! $Id: readaerosolstrato_rrtm.F90 2183 2015-01-20 09:55:33Z musat $ ! subroutine readaerosolstrato_rrtm(debut) use netcdf95, only: nf95_close, nf95_gw_var, nf95_inq_dimid, & nf95_inq_varid, nf95_open use netcdf, only: nf90_get_var, nf90_noerr, nf90_nowrite USE phys_cal_mod, ONLY : mth_cur USE mod_grid_phy_lmdz USE mod_phys_lmdz_mpi_data, ONLY : is_mpi_root USE mod_phys_lmdz_para USE phys_state_var_mod USE phys_local_var_mod USE aero_mod USE dimphy USE YOERAD , ONLY : NLW implicit none include "YOMCST.h" include "dimensions.h" ! Variable input logical debut ! Variables locales integer n_lat ! number of latitudes in the input data integer n_lon ! number of longitudes in the input data integer n_lev ! number of levels in the input data integer n_month ! number of months in the input data real, pointer:: latitude(:) real, pointer:: longitude(:) real, pointer:: time(:) real, pointer:: lev(:) integer k, band, wave, i integer, save :: mth_pre real, allocatable, dimension(:,:), save :: tau_aer_strat !$OMP THREADPRIVATE(tau_aer_strat) ! Champs reconstitues real, allocatable:: tauaerstrat(:, :, :, :) real, allocatable:: tauaerstrat_mois(:, :, :) real, allocatable:: tauaerstrat_mois_glo(:, :) real, allocatable:: sum_tau_aer_strat(:) ! For NetCDF: integer ncid_in ! IDs for input files integer varid, ncerr ! Stratospheric aerosols optical properties ! alpha_sw_strat over the 6 bands is normalised by the 550 nm extinction coefficient real, dimension(nbands_sw_rrtm) :: alpha_sw_strat, piz_sw_strat, cg_sw_strat data alpha_sw_strat/0.8545564, 0.8451642, 0.9821724, 0.8145110, 0.3073565, 7.7966176E-02/ data cg_sw_strat /0.6997170, 0.6810035, 0.7403592, 0.7562674, 0.6676504, 0.3478689/ data piz_sw_strat /0.9999998, 0.9999998, 1.000000000, 0.9999958, 0.9977155, 0.4510679/ ! !--diagnostics AOD in the SW ! alpha_sw_strat_wave is *not* normalised by the 550 nm extinction coefficient real, dimension(nwave) :: alpha_sw_strat_wave data alpha_sw_strat_wave/3.708007,4.125824,4.136584,3.887478,3.507738/ ! !--diagnostics AOD in the LW at 10 um real :: alpha_lw_strat_wave data alpha_lw_strat_wave/0.2746812/ ! real, dimension(nbands_lw_rrtm) :: alpha_lw_abs_rrtm data alpha_lw_abs_rrtm/ 8.8340312E-02, 6.9856711E-02, 6.2652975E-02, 5.7188231E-02, & 6.3157059E-02, 5.5072524E-02, 5.0571125E-02, 0.1349073, & 0.1381676, 9.6506312E-02, 5.1312990E-02, 2.4256418E-02, & 2.7191756E-02, 3.3862915E-02, 1.6132960E-02, 1.4275438E-02/ ! calculated with Mie_SW_LW_RRTM_V2.4 (bimodal, corrected) ! for r_0=/0.13E-6, 0.41E-6/ m, sigma_g=/1.26, 1.30/ ! order: increasing wavelength! !-------------------------------------------------------- IF (.not.ALLOCATED(tau_aer_strat)) ALLOCATE(tau_aer_strat(klon,klev)) IF (.not.ALLOCATED(sum_tau_aer_strat)) ALLOCATE(sum_tau_aer_strat(klon)) IF (debut.OR.mth_cur.NE.mth_pre) THEN IF (is_mpi_root) THEN IF (nbands_sw_rrtm.NE.6) THEN print *,'nbands_sw_rrtm doit etre egal a 6 dans readaerosolstrat_rrtm' STOP ENDIF CALL nf95_open("taustrat.nc", nf90_nowrite, ncid_in) CALL nf95_inq_varid(ncid_in, "LEV", varid) CALL nf95_gw_var(ncid_in, varid, lev) n_lev = size(lev) IF (n_lev.NE.klev) THEN print *,'Le nombre de niveaux n est pas egal a klev' STOP ENDIF CALL nf95_inq_varid(ncid_in, "LAT", varid) CALL nf95_gw_var(ncid_in, varid, latitude) n_lat = size(latitude) print *, 'LAT aerosol strato=', n_lat, latitude IF (n_lat.NE.jjm+1) THEN print *,'Le nombre de lat n est pas egal a jjm+1' STOP ENDIF CALL nf95_inq_varid(ncid_in, "LON", varid) CALL nf95_gw_var(ncid_in, varid, longitude) n_lon = size(longitude) print *, 'LON aerosol strato=', n_lon, longitude IF (n_lon.NE.iim) THEN print *,'Le nombre de lon n est pas egal a iim' STOP ENDIF CALL nf95_inq_varid(ncid_in, "TIME", varid) CALL nf95_gw_var(ncid_in, varid, time) n_month = size(time) print *, 'TIME aerosol strato=', n_month, time IF (n_month.NE.12) THEN print *,'Le nombre de month n est pas egal a 12' STOP ENDIF ALLOCATE(tauaerstrat(n_lon, n_lat, n_lev, n_month)) ALLOCATE(tauaerstrat_mois(n_lon, n_lat, n_lev)) ALLOCATE(tauaerstrat_mois_glo(klon_glo, n_lev)) !--reading stratospheric AOD at 550 nm CALL nf95_inq_varid(ncid_in, "TAUSTRAT", varid) ncerr = nf90_get_var(ncid_in, varid, tauaerstrat) print *,'code erreur readaerosolstrato=', ncerr, varid CALL nf95_close(ncid_in) !---select the correct month IF (mth_cur.LT.1.OR.mth_cur.GT.12) THEN print *,'probleme avec le mois dans readaerosolstrat =', mth_cur ENDIF tauaerstrat_mois(:,:,:) = tauaerstrat(:,:,:,mth_cur) !---reduce to a klon_glo grid CALL grid2dTo1d_glo(tauaerstrat_mois,tauaerstrat_mois_glo) ENDIF !--is_mpi_root !--keep memory of previous month mth_pre=mth_cur !--scatter on all proc CALL scatter(tauaerstrat_mois_glo,tau_aer_strat) IF (is_mpi_root) THEN ! DEALLOCATE(tauaerstrat) DEALLOCATE(tauaerstrat_mois) DEALLOCATE(tauaerstrat_mois_glo) ! ENDIF !--is_mpi_root ENDIF !--debut ou nouveau mois !--total vertical aod at the 5 SW wavelengths DO wave=1, nwave DO k=1, klev tausum_aero(:,wave,id_STRAT_phy)=tausum_aero(:,wave,id_STRAT_phy)+ & tau_aer_strat(:,k)*alpha_sw_strat_wave(wave)/alpha_sw_strat_wave(2) ENDDO ENDDO !--weighted average for cg, piz and tau, adding strat aerosols on top of tropospheric ones DO band=1, nbands_sw_rrtm !--anthropogenic aerosols bands 1 to nbands_sw_rrtm cg_aero_sw_rrtm(:,:,2,band) = ( cg_aero_sw_rrtm(:,:,2,band)*piz_aero_sw_rrtm(:,:,2,band)*tau_aero_sw_rrtm(:,:,2,band) + & cg_sw_strat(band)*piz_sw_strat(band)*alpha_sw_strat(band)*tau_aer_strat(:,:) ) / & MAX( piz_aero_sw_rrtm(:,:,2,band)*tau_aero_sw_rrtm(:,:,2,band) + & piz_sw_strat(band)*alpha_sw_strat(band)*tau_aer_strat(:,:), 1.e-15 ) piz_aero_sw_rrtm(:,:,2,band) = ( piz_aero_sw_rrtm(:,:,2,band)*tau_aero_sw_rrtm(:,:,2,band) + & piz_sw_strat(band)*alpha_sw_strat(band)*tau_aer_strat(:,:) ) / & MAX( tau_aero_sw_rrtm(:,:,2,band) + alpha_sw_strat(band)*tau_aer_strat(:,:), 1.e-15 ) tau_aero_sw_rrtm(:,:,2,band) = tau_aero_sw_rrtm(:,:,2,band) + alpha_sw_strat(band)*tau_aer_strat(:,:) !--natural aerosols bands 1 to nbands_sw_rrtm cg_aero_sw_rrtm(:,:,1,band) = ( cg_aero_sw_rrtm(:,:,1,band)*piz_aero_sw_rrtm(:,:,1,band)*tau_aero_sw_rrtm(:,:,1,band) + & cg_sw_strat(band)*piz_sw_strat(band)*alpha_sw_strat(band)*tau_aer_strat(:,:) ) / & MAX( piz_aero_sw_rrtm(:,:,1,band)*tau_aero_sw_rrtm(:,:,1,band) + & piz_sw_strat(band)*alpha_sw_strat(band)*tau_aer_strat(:,:), 1.e-15 ) piz_aero_sw_rrtm(:,:,1,band) = ( piz_aero_sw_rrtm(:,:,1,band)*tau_aero_sw_rrtm(:,:,1,band) + & piz_sw_strat(band)*alpha_sw_strat(band)*tau_aer_strat(:,:) ) / & MAX( tau_aero_sw_rrtm(:,:,1,band) + alpha_sw_strat(band)*tau_aer_strat(:,:),1.e-15 ) tau_aero_sw_rrtm(:,:,1,band) = tau_aero_sw_rrtm(:,:,1,band) + alpha_sw_strat(band)*tau_aer_strat(:,:) !--no stratospheric aerosol in index 1 for these tests ! cg_aero_sw_rrtm(:,:,1,band) = cg_aero_sw_rrtm(:,:,1,band) ! piz_aero_sw_rrtm(:,:,1,band) = piz_aero_sw_rrtm(:,:,1,band) ! tau_aero_sw_rrtm(:,:,1,band) = tau_aero_sw_rrtm(:,:,1,band) ENDDO !--stratospheric AOD in LW IF (nbands_lw_rrtm .NE. NLW) then print*, 'different values for NLW (=',NLW,') and nbands_lw_rrtm (=', nbands_lw_rrtm, ')' STOP ENDIF DO band=1, nbands_lw_rrtm tau_aero_lw_rrtm(:,:,2,band) = tau_aero_lw_rrtm(:,:,2,band) + alpha_lw_abs_rrtm(band)*tau_aer_strat(:,:) tau_aero_lw_rrtm(:,:,1,band) = tau_aero_lw_rrtm(:,:,1,band) + alpha_lw_abs_rrtm(band)*tau_aer_strat(:,:) !--no stratospheric aerosols in index 1 for these tests ! tau_aero_lw_rrtm(:,:,1,band) = tau_aero_lw_rrtm(:,:,1,band) ENDDO end subroutine readaerosolstrato_rrtm