subroutine phyetat0_academic (ngrid,nlayer, fichnom,tab0,Lmodif,nsoil,nq, & day_ini,time,tsurf,tsoil, & emis,q2,qsurf,cloudfrac,totcloudfrac,hice, & rnat,pctsrf_sic,tslab,tsea_ice,sea_ice) USE infotrac, ONLY: tname USE surfdat_h, only: phisfi, albedodat, zmea, zstd, zsig, zgam, zthe use iostart, only: nid_start, open_startphy, close_startphy, & get_field, get_var, inquire_field, & inquire_dimension, inquire_dimension_length use slab_ice_h, only: noceanmx use mod_phys_lmdz_para, only : is_master implicit none !====================================================================== ! Auteur(s) Z.X. Li (LMD/CNRS) date: 19930818 ! Adaptation à Mars : Yann Wanherdrick ! Objet: Lecture de l etat initial pour la physique !====================================================================== #include "netcdf.inc" !#include "dimensions.h" !#include "dimphys.h" !#include "planete.h" #include "comcstfi.h" !====================================================================== ! INTEGER nbsrf !Mars nbsrf a 1 au lieu de 4 ! PARAMETER (nbsrf=1) ! nombre de sous-fractions pour une maille !====================================================================== ! Arguments: ! --------- ! inputs: integer,intent(in) :: ngrid integer,intent(in) :: nlayer character*(*),intent(in) :: fichnom ! "startfi.nc" file integer,intent(in) :: tab0 integer,intent(in) :: Lmodif integer,intent(in) :: nsoil ! # of soil layers integer,intent(in) :: nq integer,intent(in) :: day_ini real,intent(in) :: time ! outputs: real,intent(out) :: tsurf(ngrid) ! surface temperature real,intent(out) :: tsoil(ngrid,nsoil) ! soil temperature real,intent(out) :: emis(ngrid) ! surface emissivity real,intent(out) :: q2(ngrid, nlayer+1) ! real,intent(out) :: qsurf(ngrid,nq) ! tracers on surface ! real co2ice(ngrid) ! co2 ice cover real,intent(out) :: cloudfrac(ngrid,nlayer) real,intent(out) :: hice(ngrid), totcloudfrac(ngrid) real,intent(out) :: pctsrf_sic(ngrid),tslab(ngrid,noceanmx) real,intent(out) :: tsea_ice(ngrid),sea_ice(ngrid) real,intent(out) :: rnat(ngrid) !====================================================================== ! Local variables: ! INTEGER radpas ! REAL co2_ppm ! REAL solaire real xmin,xmax ! to display min and max of a field ! INTEGER ig,iq,lmax INTEGER nid, nvarid INTEGER ierr, i, nsrf ! integer isoil ! INTEGER length ! PARAMETER (length=100) CHARACTER*7 str7 CHARACTER*2 str2 CHARACTER*1 yes ! REAL p_rad,p_omeg,p_g,p_cpp,p_mugaz,p_daysec INTEGER nqold ! flag which identifies if 'startfi.nc' file is using old names (qsurf01,...) ! logical :: oldtracernames=.false. integer :: count character(len=30) :: txt ! to store some text INTEGER :: indextime=1 ! index of selected time, default value=1 logical :: found,found_file ! ! ALLOCATE ARRAYS IN surfdat_h ! IF (.not. ALLOCATED(albedodat)) ALLOCATE(albedodat(ngrid)) IF (.not. ALLOCATED(phisfi)) ALLOCATE(phisfi(ngrid)) IF (.not. ALLOCATED(zmea)) ALLOCATE(zmea(ngrid)) IF (.not. ALLOCATED(zstd)) ALLOCATE(zstd(ngrid)) IF (.not. ALLOCATED(zsig)) ALLOCATE(zsig(ngrid)) IF (.not. ALLOCATED(zgam)) ALLOCATE(zgam(ngrid)) IF (.not. ALLOCATED(zthe)) ALLOCATE(zthe(ngrid)) ! open physics initial state file: call open_startphy(fichnom,found_file) ! Ehouarn, if file not found, then call tabfi with nid_start==0 if (.not.found_file) then if (is_master) write(*,*) 'phyetat0_academic: call tabfi with nid_start=0' call tabfi (ngrid,0,Lmodif,tab0,day_ini,lmax,p_rad, & p_omeg,p_g,p_cpp,p_mugaz,p_daysec,time) else ! possibility to modify tab_cntrl in tabfi if (is_master) write(*,*) if (is_master) write(*,*) 'TABFI in phyeta0: Lmodif=',Lmodif," tab0=",tab0 call tabfi (ngrid,nid_start,Lmodif,tab0,day_ini,lmax,p_rad, & p_omeg,p_g,p_cpp,p_mugaz,p_daysec,time) endif !c !c Lecture des latitudes (coordonnees): !c ! ierr = NF_INQ_VARID (nid, "latitude", nvarid) ! IF (ierr.NE.NF_NOERR) THEN ! PRINT*, 'phyetat0: Le champ est absent' ! CALL abort ! ENDIF !#ifdef NC_DOUBLE ! ierr = NF_GET_VARA_DOUBLE(nid,nvarid,sta,ngrid,lati) !#else ! ierr = NF_GET_VARA_REAL(nid,nvarid,sta,ngrid,lati) !#endif ! IF (ierr.NE.NF_NOERR) THEN ! PRINT*, 'phyetat0: Lecture echouee pour ' ! CALL abort ! ENDIF !c !c Lecture des longitudes (coordonnees): !c ! ierr = NF_INQ_VARID (nid, "longitude", nvarid) ! IF (ierr.NE.NF_NOERR) THEN ! PRINT*, 'phyetat0: Le champ est absent' ! CALL abort ! ENDIF !#ifdef NC_DOUBLE ! ierr = NF_GET_VARA_DOUBLE(nid,nvarid,sta,ngrid,long) !#else ! ierr = NF_GET_VARA_REAL(nid,nvarid,sta,ngrid,long) !#endif ! IF (ierr.NE.NF_NOERR) THEN ! PRINT*, 'phyetat0: Lecture echouee pour ' ! CALL abort ! ENDIF !c !c Lecture des aires des mailles: !c ! ierr = NF_INQ_VARID (nid, "area", nvarid) ! IF (ierr.NE.NF_NOERR) THEN ! PRINT*, 'phyetat0: Le champ est absent' ! CALL abort ! ENDIF !#ifdef NC_DOUBLE ! ierr = NF_GET_VARA_DOUBLE(nid,nvarid,sta,ngrid,area) !#else ! ierr = NF_GET_VARA_REAL(nid,nvarid,sta,ngrid,area) !#endif ! IF (ierr.NE.NF_NOERR) THEN ! PRINT*, 'phyetat0: Lecture echouee pour ' ! CALL abort ! ENDIF ! xmin = 1.0E+20 ! xmax = -1.0E+20 ! xmin = MINVAL(area) ! xmax = MAXVAL(area) ! PRINT*,'Aires des mailles :', xmin, xmax ! Load surface geopotential: if (found_file) then call get_field("phisfi",phisfi,found) else found=.false. endif if (.not.found) then if (is_master) write(*,*) "phyetat0: Failed loading " phisfi(:)=0 else if (is_master) write(*,*) "phyetat0: surface geopotential range:", & minval(phisfi), maxval(phisfi) endif ! Load bare ground albedo: if (found_file) then call get_field("albedodat",albedodat,found) else found=.false. endif if (.not.found) then if (is_master) write(*,*) "phyetat0: Failed loading " do ig=1,ngrid albedodat(ig)=0. enddo else if (is_master) write(*,*) "phyetat0: Bare ground albedo range:", & minval(albedodat), maxval(albedodat) endif ! ZMEA if (found_file) then call get_field("ZMEA",zmea,found) else found=.false. endif if (.not.found) then zmea(:)=0. else if (is_master) write(*,*) "phyetat0: range:", & minval(zmea), maxval(zmea) endif ! ZSTD if (found_file) then call get_field("ZSTD",zstd,found) else found=.false. endif if (.not.found) then if (is_master) write(*,*) "phyetat0: Failed loading " zstd(:)=0. else if (is_master) write(*,*) "phyetat0: range:", & minval(zstd), maxval(zstd) endif ! ZSIG if (found_file) then call get_field("ZSIG",zsig,found) else found=.false. endif if (.not.found) then if (is_master) write(*,*) "phyetat0: Failed loading " zsig(:)=0. else if (is_master) write(*,*) "phyetat0: range:", & minval(zsig), maxval(zsig) endif ! ZGAM if (found_file) then call get_field("ZGAM",zgam,found) else found=.false. endif if (.not.found) then if (is_master) write(*,*) "phyetat0: Failed loading " zgam(:)=0. else if (is_master) write(*,*) "phyetat0: range:", & minval(zgam), maxval(zgam) endif ! ZTHE if (found_file) then call get_field("ZTHE",zthe,found) else found=.false. endif if (.not.found) then if (is_master) write(*,*) "phyetat0: Failed loading " zthe(:)=0. else if (is_master) write(*,*) "phyetat0: range:", & minval(zthe), maxval(zthe) endif ! Surface temperature : if (found_file) then call get_field("tsurf",tsurf,found,indextime) else found=.false. endif if (.not.found) then !mi initialising tsurf with pt(:,1) !tsurf(:)=175.0 else if (is_master) write(*,*) "phyetat0: Surface temperature range:", & minval(tsurf), maxval(tsurf) endif ! Surface emissivity if (found_file) then call get_field("emis",emis,found,indextime) else found=.false. endif if (.not.found) then if (is_master) write(*,*) "phyetat0: Failed loading " emis(:)=0.5 else if (is_master) write(*,*) "phyetat0: Surface emissivity range:", & minval(emis), maxval(emis) endif ! Cloud fraction (added by BC 2010) if (found_file) then call get_field("cloudfrac",cloudfrac,found,indextime) else found=.false. endif if (.not.found) then if (is_master) write(*,*) "phyetat0: Failed loading " cloudfrac(:,:)=0. else if (is_master) write(*,*) "phyetat0: Cloud fraction range:", & minval(cloudfrac), maxval(cloudfrac) endif ! Total cloud fraction (added by BC 2010) if (found_file) then call get_field("totcloudfrac",totcloudfrac,found,indextime) else found=.false. endif if (.not.found) then if (is_master) write(*,*) "phyetat0: Failed loading " totcloudfrac(:)=0.5 else if (is_master) write(*,*) "phyetat0: Total cloud fraction range:", & minval(totcloudfrac), maxval(totcloudfrac) endif ! Height of oceanic ice (added by BC 2010) if (found_file) then call get_field("hice",hice,found,indextime) else found=.false. endif if (.not.found) then if (is_master) write(*,*) "phyetat0: Failed loading " ! call abort do ig=1,ngrid hice(ig)=0. enddo else if (is_master) write(*,*) "phyetat0: Height of oceanic ice range:", & minval(hice), maxval(hice) endif ! SLAB OCEAN (added by BC 2014) ! nature of the surface if (found_file) then call get_field("rnat",rnat,found,indextime) else found=.false. endif if (.not.found) then if (is_master) write(*,*) "phyetat0: Failed loading " do ig=1,ngrid rnat(ig)=1. enddo else do ig=1,ngrid if((nint(rnat(ig)).eq.2).or.(nint(rnat(ig)).eq.0))then rnat(ig)=0. else rnat(ig)=1. endif enddo if (is_master) write(*,*) "phyetat0: Nature of surface range:", & minval(rnat), maxval(rnat) endif ! Pourcentage of sea ice cover if (found_file) then call get_field("pctsrf_sic",pctsrf_sic,found,indextime) else found=.false. endif if (.not.found) then if (is_master) write(*,*) "phyetat0: Failed loading " do ig=1,ngrid pctsrf_sic(ig)=0. enddo else if (is_master) write(*,*) "phyetat0: Pourcentage of sea ice cover range:", & minval(pctsrf_sic), maxval(pctsrf_sic) endif ! Slab ocean temperature (2 layers) if (found_file) then call get_field("tslab",tslab,found,indextime) else found=.false. endif if (.not.found) then if (is_master) write(*,*) "phyetat0: Failed loading " do ig=1,ngrid do iq=1,noceanmx tslab(ig,iq)=tsurf(ig) enddo enddo else if (is_master) write(*,*) "phyetat0: Slab ocean temperature range:", & minval(tslab), maxval(tslab) endif ! Oceanic ice temperature if (found_file) then call get_field("tsea_ice",tsea_ice,found,indextime) else found=.false. endif if (.not.found) then if (is_master) write(*,*) "phyetat0: Failed loading " do ig=1,ngrid tsea_ice(ig)=273.15-1.8 enddo else if (is_master) write(*,*) "phyetat0: Oceanic ice temperature range:", & minval(tsea_ice), maxval(tsea_ice) endif ! Oceanic ice quantity (kg/m^2) if (found_file) then call get_field("sea_ice",sea_ice,found,indextime) else found=.false. endif if (.not.found) then if (is_master) write(*,*) "phyetat0: Failed loading " do ig=1,ngrid tsea_ice(ig)=0. enddo else if (is_master) write(*,*) "phyetat0: Oceanic ice quantity range:", & minval(sea_ice), maxval(sea_ice) endif ! pbl wind variance if (found_file) then call get_field("q2",q2,found,indextime) else found=.false. endif if (.not.found) then if (is_master) write(*,*) "phyetat0: Failed loading " q2(:,:)=0.001 else if (is_master) write(*,*) "phyetat0: PBL wind variance range:", & minval(q2), maxval(q2) endif ! tracer on surface if (nq.ge.1) then do iq=1,nq txt=tname(iq) if (txt.eq."h2o_vap") then ! There is no surface tracer for h2o_vap; ! "h2o_ice" should be loaded instead txt="h2o_ice" if (is_master) write(*,*) 'phyetat0: loading surface tracer', & ' h2o_ice instead of h2o_vap' endif if (found_file) then call get_field(txt,qsurf(:,iq),found,indextime) else found=.false. endif if (.not.found) then if (is_master) write(*,*) "phyetat0: Failed loading <",trim(txt),">" if (is_master) write(*,*) " ",trim(txt)," is set to zero" else if (is_master) write(*,*) "phyetat0: Surface tracer <",trim(txt),"> range:", & minval(qsurf(:,iq)), maxval(qsurf(:,iq)) endif enddo endif ! of if (nq.ge.1) ! Call to soil_settings, in order to read soil temperatures, ! as well as thermal inertia and volumetric heat capacity !ym -> needed for saturn ? !ym call soil_settings(nid_start,ngrid,nsoil,tsurf,tsoil,indextime) ! ! close file: ! call close_startphy END SUBROUTINE phyetat0_academic