Changeset 3435 for LMDZ6/trunk/libf/dynphy_lonlat/phylmd
- Timestamp:
- Jan 22, 2019, 4:21:59 PM (6 years ago)
- Location:
- LMDZ6/trunk/libf/dynphy_lonlat/phylmd
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/trunk/libf/dynphy_lonlat/phylmd/etat0dyn_netcdf.F90
r2941 r3435 100 100 101 101 deg2rad = pi/180.0 102 102 y(:,:,:)=0 !ym warning unitialized variable 103 103 104 ! Compute psol AND tsol, knowing phis. 104 105 !******************************************************************************* -
LMDZ6/trunk/libf/dynphy_lonlat/phylmd/etat0phys_netcdf.F90
r3412 r3435 44 44 zmax0,fevap, rnebcon,falb_dir, wake_fip, agesno, detr_therm, pbl_tke, & 45 45 phys_state_var_init, ql_ancien, qs_ancien, prlw_ancien, prsw_ancien, & 46 prw_ancien 46 prw_ancien, sollwdown 47 47 USE comconst_mod, ONLY: pi, dtvr 48 48 … … 201 201 solsw = 165. 202 202 sollw = -53. 203 !ym warning missing init for sollwdown => set to 0 204 sollwdown = 0. 203 205 t_ancien = 273.15 204 206 q_ancien = 0. … … 315 317 ALLOCATE(zmea0(iml,jml),zstd0(iml,jml)) !--- Mean orography and std deviation 316 318 ALLOCATE(zsig0(iml,jml),zgam0(iml,jml)) !--- Slope and nisotropy 319 zsig0(:,:)=0 !ym uninitialized variable 320 zgam0(:,:)=0 !ym uninitialized variable 317 321 ALLOCATE(zthe0(iml,jml)) !--- Highest slope orientation 322 zthe0(:,:)=0 !ym uninitialized variable 318 323 ALLOCATE(zpic0(iml,jml),zval0(iml,jml)) !--- Peaks and valley heights 319 324 -
LMDZ6/trunk/libf/dynphy_lonlat/phylmd/iniphysiq_mod.F90
r3125 r3435 35 35 USE phystokenc_mod, ONLY: init_phystokenc 36 36 USE phyaqua_mod, ONLY: iniaqua 37 USE comconst_mod, ONLY: omeg, rad 37 38 #ifdef INCA 38 39 USE indice_sol_mod, ONLY: nbsrf, is_oce, is_sic, is_ter, is_lic … … 118 119 119 120 ! Initialize dimphy module (unless in 1D where it has already been done) 120 IF (klon_glo>1) CALL Init_dimphy(klon_omp,nlayer)121 ! IF (klon_glo>1) CALL Init_dimphy(klon_omp,nlayer) 121 122 122 123 ! Copy over "offline" settings … … 134 135 cu,cuvsurcv,cv,cvusurcu, & 135 136 aire,apoln,apols, & 136 aireu,airev,rlatvdyn )137 aireu,airev,rlatvdyn,rad,omeg) 137 138 END IF 138 139
Note: See TracChangeset
for help on using the changeset viewer.