Changeset 1537
- Timestamp:
- Apr 8, 2016, 12:48:06 PM (9 years ago)
- Location:
- trunk/LMDZ.GENERIC
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.GENERIC/README
r1536 r1537 1159 1159 - Removed module "comhdiff_mod.F90", as it is only used by module 1160 1160 surf_heat_transp_mod.F90, moved module variables there. 1161 - Added in "surf_heat_transp_mod" local versions of some arrays1161 - Added in "surf_heat_transp_mod" local versions of some arrays 1162 1162 and routines (from dyn3d) required to compute gradient, divergence, etc. 1163 1163 on the global dynamics grid. … … 1171 1171 1172 1172 == 08/04/2016 == EM 1173 - Adapt rcm1d.F so that it also runs when compiled from LMDZ.COMMON. 1174 1173 - Adapted rcm1d.F so that it also runs when compiled from LMDZ.COMMON. 1174 1175 == 08/04/2016 == EM 1176 - Bug fix in surf_heat_transp_mod (introduced with revision 1529, 05/04/2016, modifications). 1177 - Initialize runoff in hydrol.F90. 1178 1179 1180 -
trunk/LMDZ.GENERIC/libf/phystd/hydrol.F90
r1521 r1537 117 117 118 118 119 if (activerunoff) ALLOCATE(runoff(ngrid)) 119 if (activerunoff) then 120 ALLOCATE(runoff(ngrid)) 121 runoff(1:ngrid)=0 122 endif 120 123 121 124 ivap=igcm_h2o_vap -
trunk/LMDZ.GENERIC/libf/phystd/surf_heat_transp_mod.F90
r1529 r1537 226 226 iip1=nbp_lon+1 227 227 iip2=nbp_lon+2 228 jjp1=nbp_l on228 jjp1=nbp_lat 229 229 ip1jm=(nbp_lon+1)*(nbp_lat-1) ! = iip1*jjm 230 230 ip1jmi1=(nbp_lon+1)*(nbp_lat-1)-(nbp_lon+1) ! = ip1jm - iip1
Note: See TracChangeset
for help on using the changeset viewer.