--- trunk/libf/dyn3d/etat0.f90 2011/04/08 12:43:31 43 +++ trunk/libf/dyn3d/etat0.f90 2012/04/20 14:58:43 61 @@ -17,8 +17,6 @@ ! From "etat0_netcdf.F", version 1.3 2005/05/25 13:10:09 - ! This subroutine creates "mask". - use caldyn0_m, only: caldyn0 use comconst, only: dtvr, daysec, cpp, kappa use comgeom, only: rlatu, rlonv, rlonu, rlatv, aire_2d, apoln, apols, & @@ -32,15 +30,17 @@ use dynredem1_m, only: dynredem1 use exner_hyb_m, only: exner_hyb USE flincom, only: flinclo, flinopen_nozoom, flininfo - use flinget_m, only: flinget use geopot_m, only: geopot use grid_atob, only: grille_m use grid_change, only: init_dyn_phy, dyn_phy - use histcom, only: histclo + use histclo_m, only: histclo use indicesol, only: is_oce, is_sic, is_ter, is_lic, epsfra use iniadvtrac_m, only: iniadvtrac use inidissip_m, only: inidissip + use inifilr_m, only: inifilr use inigeom_m, only: inigeom + use netcdf, only: nf90_nowrite + use netcdf95, only: nf95_open, nf95_close, nf95_get_var, nf95_inq_varid use nr_util, only: pi use paramet_m, only: ip1jm, ip1jmp1 use phyredem_m, only: phyredem @@ -51,7 +51,8 @@ use serre, only: alphax USE start_init_orog_m, only: start_init_orog, mask, phis use start_init_phys_m, only: start_init_phys - use startdyn, only: start_inter_3d, start_init_dyn + use startdyn, only: start_init_dyn + use start_inter_3d_m, only: start_inter_3d use temps, only: itau_phy, annee_ref, day_ref ! Variables local to the procedure: @@ -93,7 +94,7 @@ real clwcon(klon, llm), rnebcon(klon, llm), ratqs(klon, llm) ! déclarations pour lecture glace de mer INTEGER iml_lic, jml_lic, llm_tmp, ttm_tmp - INTEGER itaul(1), fid + INTEGER itaul(1), fid, ncid, varid REAL lev(1), date REAL, ALLOCATABLE:: lon_lic(:, :), lat_lic(:, :) REAL, ALLOCATABLE:: dlon_lic(:), dlat_lic(:) @@ -148,7 +149,10 @@ ! Compute pressure on intermediate levels: forall(l = 1: llm + 1) p3d(:, :, l) = ap(l) + bp(l) * psol CALL exner_hyb(psol, p3d, pks, pk) - IF (MINVAL(pk) == MAXVAL(pk)) stop '"pk" should not be constant' + IF (MINVAL(pk) == MAXVAL(pk)) then + print *, '"pk" should not be constant' + stop 1 + end IF pls = preff * (pk / cpp)**(1. / kappa) PRINT *, "minval(pls) = ", minval(pls) @@ -215,9 +219,9 @@ zpic = pack(zpic_2d, dyn_phy) zval = pack(zval_2d, dyn_phy) - ! On initialise les sous-surfaces: + ! On initialise les sous-surfaces. ! Lecture du fichier glace de terre pour fixer la fraction de terre - ! et de glace de terre: + ! et de glace de terre : CALL flininfo("landiceref.nc", iml_lic, jml_lic, llm_tmp, & ttm_tmp, fid) ALLOCATE(lat_lic(iml_lic, jml_lic)) @@ -228,9 +232,11 @@ CALL flinopen_nozoom(iml_lic, jml_lic, & llm_tmp, lon_lic, lat_lic, lev, ttm_tmp, itaul, date, trash, & fid) - CALL flinget(fid, 'landice', iml_lic, jml_lic, llm_tmp, ttm_tmp & - , 1, 1, fraclic) CALL flinclo(fid) + call nf95_open("landiceref.nc", nf90_nowrite, ncid) + call nf95_inq_varid(ncid, 'landice', varid) + call nf95_get_var(ncid, varid, fraclic) + call nf95_close(ncid) ! Interpolation sur la grille T du modèle : PRINT *, 'Dimensions de "landice"'