- Timestamp:
- Nov 20, 2015, 5:23:28 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/trunk/libf/dynlonlat_phylonlat/phylmd/limit_netcdf.F90
r2342 r2399 22 22 USE conf_dat_m, ONLY: conf_dat2d, conf_dat3d 23 23 USE dimphy, ONLY: klon, zmasq 24 USE phys_state_var_mod, ONLY: pctsrf, rlon, rlat 25 USE control_mod 24 USE geometry_mod, ONLY: longitude_deg, latitude_deg 25 USE phys_state_var_mod, ONLY: pctsrf 26 USE control_mod, ONLY: anneeref 26 27 USE init_ssrf_m, ONLY: start_init_subsurf 27 28 … … 113 114 CALL start_init_orog0(rlonv,rlatu,phis,masque) 114 115 CALL gr_dyn_fi(1,iip1,jjp1,klon,masque,zmasq) !--- To physical grid 115 ALLOCATE( rlon(klon),rlat(klon),pctsrf(klon,nbsrf))116 ALLOCATE(pctsrf(klon,nbsrf)) 116 117 CALL start_init_subsurf(.FALSE.) 117 118 END IF … … 267 268 CALL ncerr(NF90_PUT_VAR(nid,id_ALB ,phy_alb(:,:),[1,1],[klon,ndays]),fnam) 268 269 CALL ncerr(NF90_PUT_VAR(nid,id_RUG ,phy_rug(:,:),[1,1],[klon,ndays]),fnam) 269 call nf95_put_var(nid, varid_longitude, rlon)270 call nf95_put_var(nid, varid_latitude, rlat)270 call nf95_put_var(nid, varid_longitude, longitude_deg) 271 call nf95_put_var(nid, varid_latitude, latitude_deg) 271 272 272 273 CALL ncerr(NF90_CLOSE(nid),fnam)
Note: See TracChangeset
for help on using the changeset viewer.