--- trunk/phylmd/phytrac.f 2015/01/13 14:56:15 120 +++ trunk/Sources/phylmd/phytrac.f 2015/07/20 16:01:49 157 @@ -10,7 +10,7 @@ SUBROUTINE phytrac(itap, lmt_pas, julien, gmtime, firstcal, lafin, pdtphys, & t_seri, paprs, pplay, pmfu, pmfd, pde_u, pen_d, coefh, fm_therm, & entr_therm, yu1, yv1, ftsol, pctsrf, frac_impa, frac_nucl, pphis, da, & - phi, mp, upwd, dnwd, tr_seri, zmasse) + phi, mp, upwd, dnwd, tr_seri, zmasse, ncid_startphy) ! From phylmd/phytrac.F, version 1.15 2006/02/21 08:08:30 (SVN revision 679) @@ -39,10 +39,12 @@ use ini_histrac_m, only: ini_histrac use initrrnpb_m, only: initrrnpb use minmaxqfi_m, only: minmaxqfi + use netcdf95, only: nf95_inq_varid, nf95_get_var, nf95_put_var use nflxtr_m, only: nflxtr use nr_util, only: assert use o3_chem_m, only: o3_chem use phyetat0_m, only: rlat + use phyredem0_m, only: ncid_restartphy use press_coefoz_m, only: press_coefoz use radiornpb_m, only: radiornpb use regr_pr_comb_coefoz_m, only: regr_pr_comb_coefoz @@ -102,7 +104,9 @@ real, intent(in):: zmasse(:, :) ! (klon, llm) ! (column-density of mass of air in a cell, in kg m-2) - ! Variables local to the procedure: + integer, intent(in):: ncid_startphy + + ! Local: integer nsplit @@ -116,7 +120,7 @@ ! ! Pour la source de radon et son reservoir de sol - REAL, save:: trs(klon, nqmx - 2) ! Concentration de radon dans le sol + REAL, save:: trs(klon, nqmx - 2) ! Concentration de traceur dans le sol REAL masktr(klon, nqmx - 2) ! Masque reservoir de sol traceur ! Masque de l'echange avec la surface @@ -155,7 +159,10 @@ REAL d_tr(klon, llm), d_trs(klon) ! tendances de traceurs REAL d_tr_cl(klon, llm, nqmx - 2) ! tendance de traceurs couche limite - REAL d_tr_cv(klon, llm, nqmx - 2) ! tendance de traceurs conv pour chq traceur + + REAL d_tr_cv(klon, llm, nqmx - 2) + ! tendance de traceurs conv pour chq traceur + REAL d_tr_th(klon, llm, nqmx - 2) ! la tendance des thermiques REAL d_tr_dec(klon, llm, 2) ! la tendance de la decroissance ! ! radioactive du rn - > pb @@ -167,7 +174,7 @@ ! ! dans chaque couche real ztra_th(klon, llm) - integer isplit + integer isplit, varid ! Controls: logical:: couchelimite = .true. @@ -190,13 +197,10 @@ ! Initialisation de certaines variables pour le radon et le plomb ! Initialisation du traceur dans le sol (couche limite radonique) - trs(:, :) = 0. + trs(:, 2:) = 0. - open (unit=99, file='starttrac', status='old', err=999, & - form='formatted') - read(unit=99, fmt=*) (trs(i, 1), i=1, klon) -999 continue - close(unit=99) + call nf95_inq_varid(ncid_startphy, "trs", varid) + call nf95_get_var(ncid_startphy, varid, trs(:, 1)) ! Initialisation de la fraction d'aerosols lessivee @@ -296,29 +300,22 @@ DO it=1, nqmx - 2 if (clsol(it)) then ! couche limite avec quantite dans le sol calculee - CALL cltracrn(it, pdtphys, yu1, yv1, & - coefh, t_seri, ftsol, pctsrf, & - tr_seri(:, :, it), trs(1, it), & - paprs, pplay, delp, & - masktr(1, it), fshtr(1, it), hsoltr(it), & - tautr(it), vdeptr(it), & - rlat, & - d_tr_cl(1, 1, it), d_trs) + CALL cltracrn(it, pdtphys, yu1, yv1, coefh, t_seri, ftsol, & + pctsrf, tr_seri(:, :, it), trs(:, it), paprs, pplay, delp, & + masktr(1, it), fshtr(1, it), hsoltr(it), tautr(it), & + vdeptr(it), rlat, d_tr_cl(1, 1, it), d_trs) DO k = 1, llm DO i = 1, klon tr_seri(i, k, it) = tr_seri(i, k, it) + d_tr_cl(i, k, it) ENDDO ENDDO - ! Traceur ds sol - - DO i = 1, klon - trs(i, it) = trs(i, it) + d_trs(i) - END DO - else ! couche limite avec flux prescrit + trs(:, it) = trs(:, it) + d_trs + else + ! couche limite avec flux prescrit !MAF provisoire source / traceur a creer DO i=1, klon - source(i) = 0.0 ! pas de source, pour l'instant + source(i) = 0. ! pas de source, pour l'instant ENDDO CALL cltrac(pdtphys, coefh, t_seri, tr_seri(:, :, it), source, & @@ -407,13 +404,8 @@ call write_histrac(lessivage, itap, nid_tra) if (lafin) then - print *, "C'est la fin de la physique." - open(unit=99, file='restarttrac', form='formatted') - do i=1, klon - write(unit=99, fmt=*) trs(i, 1) - enddo - PRINT *, 'Ecriture du fichier restarttrac' - close(unit=99) + call nf95_inq_varid(ncid_restartphy, "trs", varid) + call nf95_put_var(ncid_restartphy, varid, trs(:, 1)) endif contains @@ -426,7 +418,7 @@ use histsync_m, only: histsync use histwrite_m, only: histwrite use temps, only: itau_phy - use iniadvtrac_m, only: tnom + use iniadvtrac_m, only: tname use comgeomphy, only: airephy use dimphy, only: klon use grid_change, only: gr_phy_write_2d @@ -450,17 +442,17 @@ CALL histwrite(nid_tra, "zmasse", itau_w, gr_phy_write_3d(zmasse)) DO it=1, nqmx - 2 - CALL histwrite(nid_tra, tnom(it+2), itau_w, & + CALL histwrite(nid_tra, tname(it+2), itau_w, & gr_phy_write_3d(tr_seri(:, :, it))) if (lessivage) THEN - CALL histwrite(nid_tra, "fl"//tnom(it+2), itau_w, & + CALL histwrite(nid_tra, "fl"//tname(it+2), itau_w, & gr_phy_write_3d(flestottr(:, :, it))) endif - CALL histwrite(nid_tra, "d_tr_th_"//tnom(it+2), itau_w, & + CALL histwrite(nid_tra, "d_tr_th_"//tname(it+2), itau_w, & gr_phy_write_3d(d_tr_th(:, :, it))) - CALL histwrite(nid_tra, "d_tr_cv_"//tnom(it+2), itau_w, & + CALL histwrite(nid_tra, "d_tr_cv_"//tname(it+2), itau_w, & gr_phy_write_3d(d_tr_cv(:, :, it))) - CALL histwrite(nid_tra, "d_tr_cl_"//tnom(it+2), itau_w, & + CALL histwrite(nid_tra, "d_tr_cl_"//tname(it+2), itau_w, & gr_phy_write_3d(d_tr_cl(:, :, it))) ENDDO