Changeset 1537


Ignore:
Timestamp:
Apr 8, 2016, 12:48:06 PM (9 years ago)
Author:
emillour
Message:

Generic GCM:

  • Bug fix in surf_heat_transp_mod (introduced with revision 1529, 05/04/2016, modifications).
  • Initialize runoff in hydrol.F90.

EM

Location:
trunk/LMDZ.GENERIC
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.GENERIC/README

    r1536 r1537  
    11591159- Removed module "comhdiff_mod.F90", as it is only used by module
    11601160  surf_heat_transp_mod.F90, moved module variables there.
    1161 - Addedin "surf_heat_transp_mod" local versions of some arrays
     1161- Added in "surf_heat_transp_mod" local versions of some arrays
    11621162  and routines (from dyn3d) required to compute gradient, divergence, etc.
    11631163  on the global dynamics grid.
     
    11711171
    11721172== 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  
    117117         
    118118         
    119          if (activerunoff) ALLOCATE(runoff(ngrid))
     119         if (activerunoff) then
     120           ALLOCATE(runoff(ngrid))
     121           runoff(1:ngrid)=0
     122         endif
    120123
    121124         ivap=igcm_h2o_vap
  • trunk/LMDZ.GENERIC/libf/phystd/surf_heat_transp_mod.F90

    r1529 r1537  
    226226      iip1=nbp_lon+1
    227227      iip2=nbp_lon+2
    228       jjp1=nbp_lon
     228      jjp1=nbp_lat
    229229      ip1jm=(nbp_lon+1)*(nbp_lat-1) ! = iip1*jjm
    230230      ip1jmi1=(nbp_lon+1)*(nbp_lat-1)-(nbp_lon+1) ! = ip1jm - iip1
Note: See TracChangeset for help on using the changeset viewer.