! ! $Id: writedynav_p.F 1279 2009-12-10 09:02:56Z fairhead $ ! subroutine writedynav_loc( time, vcov, ucov,teta,ppk,phi,q, & masse,ps,phis) #ifdef CPP_IOIPSL ! This routine needs IOIPSL USE ioipsl #endif USE parallel_lmdz USE misc_mod USE infotrac, ONLY : nqtot use com_io_dyn_mod, only : histaveid,histvaveid,histuaveid USE comconst_mod, ONLY: cpp USE temps_mod, ONLY: itau_dyn implicit none ! ! Ecriture du fichier histoire au format IOIPSL ! ! Appels succesifs des routines: histwrite ! ! Entree: ! histid: ID du fichier histoire ! time: temps de l'ecriture ! vcov: vents v covariants ! ucov: vents u covariants ! teta: temperature potentielle ! phi : geopotentiel instantane ! q : traceurs ! masse: masse ! ps :pression au sol ! phis : geopotentiel au sol ! ! ! Sortie: ! fileid: ID du fichier netcdf cree ! ! L. Fairhead, LMD, 03/99 ! ! ===================================================================== ! ! Declarations include "dimensions.h" include "paramet.h" include "comgeom.h" include "description.h" include "iniprint.h" ! ! Arguments ! REAL :: vcov(ijb_v:ije_v,llm),ucov(ijb_u:ije_u,llm) REAL :: teta(ijb_u:ije_u,llm),phi(ijb_u:ije_u,llm) REAL :: ppk(ijb_u:ije_u,llm) REAL :: ps(ijb_u:ije_u),masse(ijb_u:ije_u,llm) REAL :: phis(ijb_u:ije_u) REAL :: q(ijb_u:ije_u,llm,nqtot) integer :: time #ifdef CPP_IOIPSL ! This routine needs IOIPSL ! Variables locales ! INTEGER,SAVE,ALLOCATABLE :: ndex2d(:),ndexu(:),ndexv(:) INTEGER :: iq, ii, ll REAL,SAVE,ALLOCATABLE :: tm(:,:) REAL,SAVE,ALLOCATABLE :: vnat(:,:),unat(:,:) logical :: ok_sync integer :: itau_w integer :: ijb,ije,jjn LOGICAL,SAVE :: first=.TRUE. !$OMP THREADPRIVATE(first) ! ! Initialisations ! if (adjust) return IF (first) THEN !$OMP BARRIER !$OMP MASTER ALLOCATE(unat(ijb_u:ije_u,llm)) ALLOCATE(vnat(ijb_v:ije_v,llm)) ALLOCATE(tm(ijb_u:ije_u,llm)) ALLOCATE(ndex2d(ijnb_u*llm)) ALLOCATE(ndexu(ijnb_u*llm)) ALLOCATE(ndexv(ijnb_v*llm)) ndex2d = 0 ndexu = 0 ndexv = 0 !$OMP END MASTER !$OMP BARRIER first=.FALSE. ENDIF ok_sync = .TRUE. itau_w = itau_dyn + time ! Passage aux composantes naturelles du vent call covnat_loc(llm, ucov, vcov, unat, vnat) ! ! Appels a histwrite pour l'ecriture des variables a sauvegarder ! ! Vents U ! !$OMP BARRIER !$OMP MASTER ijb=ij_begin ije=ij_end jjn=jj_nb call histwrite(histuaveid, 'u', itau_w, unat(ijb:ije,:), & iip1*jjn*llm, ndexu) !$OMP END MASTER ! ! Vents V ! ije=ij_end if (pole_sud) jjn=jj_nb-1 if (pole_sud) ije=ij_end-iip1 !$OMP BARRIER !$OMP MASTER call histwrite(histvaveid, 'v', itau_w, vnat(ijb:ije,:), & iip1*jjn*llm, ndexv) !$OMP END MASTER ! ! Temperature potentielle moyennee ! ijb=ij_begin ije=ij_end jjn=jj_nb !$OMP MASTER call histwrite(histaveid, 'theta', itau_w, teta(ijb:ije,:), & iip1*jjn*llm, ndexu) !$OMP END MASTER ! ! Temperature moyennee ! !$OMP DO SCHEDULE(STATIC,OMP_CHUNK) do ll=1,llm do ii = ijb, ije tm(ii,ll) = teta(ii,ll) * ppk(ii,ll)/cpp enddo enddo !$OMP ENDDO !$OMP MASTER call histwrite(histaveid, 'temp', itau_w, tm(ijb:ije,:), & iip1*jjn*llm, ndexu) !$OMP END MASTER ! ! Geopotentiel ! !$OMP MASTER call histwrite(histaveid, 'phi', itau_w, phi(ijb:ije,:), & iip1*jjn*llm, ndexu) !$OMP END MASTER ! ! Traceurs ! !!$OMP MASTER ! DO iq=1,nqtot ! call histwrite(histaveid, tracers(iq)%longName, itau_w, & ! . q(ijb:ije,:,iq), iip1*jjn*llm, ndexu) ! enddo !!$OMP END MASTER ! ! Masse ! !$OMP MASTER call histwrite(histaveid, 'masse', itau_w, masse(ijb:ije,:), & iip1*jjn*llm, ndexu) !$OMP END MASTER ! ! Pression au sol ! !$OMP MASTER call histwrite(histaveid, 'ps', itau_w, ps(ijb:ije), & iip1*jjn, ndex2d) !$OMP END MASTER ! ! Geopotentiel au sol ! !$OMP MASTER ! call histwrite(histaveid, 'phis', itau_w, phis(ijb:ije), ! . iip1*jjn, ndex2d) !$OMP END MASTER ! ! Fin ! !$OMP MASTER if (ok_sync) then call histsync(histaveid) call histsync(histvaveid) call histsync(histuaveid) ENDIF !$OMP END MASTER #else write(lunout,*)'writedynav_loc: Needs IOIPSL to function' #endif ! #endif of #ifdef CPP_IOIPSL end subroutine writedynav_loc