Ignore:
Timestamp:
Jun 14, 2015, 9:13:32 PM (10 years ago)
Author:
Laurent Fairhead
Message:

Merged trunk changes -r2237:2291 into testing branch

Location:
LMDZ5/branches/testing
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • LMDZ5/branches/testing

  • LMDZ5/branches/testing/libf/dyn3dmem/vlz_mod.F90

    r1910 r2298  
    11MODULE vlz_mod
    22
    3   REAL,POINTER,SAVE :: wq(:,:)
     3  REAL,POINTER,SAVE :: wq(:,:,:)
    44  REAL,POINTER,SAVE :: dzq(:,:)
    55  REAL,POINTER,SAVE :: dzqw(:,:)
    66  REAL,POINTER,SAVE :: adzqw(:,:)
     7  ! CRisi: pour les traceurs: 
     8  !REAL,POINTER,SAVE :: masseq(:,:,:)
     9  REAL,POINTER,SAVE :: Ratio(:,:,:)
    710 
    811CONTAINS
     
    1821   
    1922    d=>distrib_vanleer
    20     CALL allocate_u(wq,llm+1,d)
     23    CALL allocate_u(wq,llm+1,nqtot,d)
    2124    CALL allocate_u(dzq,llm,d)
    2225    CALL allocate_u(dzqw,llm,d)
    2326    CALL allocate_u(adzqw,llm,d)
     27    if (nqdesc_tot.gt.0) then
     28    !CALL allocate_u(masseq,llm,nqtot,d)
     29    CALL allocate_u(Ratio,llm,nqtot,d)
     30    endif !if (nqdesc_tot.gt.0) then
    2431
    2532  END SUBROUTINE vlz_allocate
     
    2936  USE bands
    3037  USE parallel_lmdz
     38  USE infotrac
    3139  IMPLICIT NONE
    3240    TYPE(distrib),INTENT(IN) :: dist
     
    3644    CALL switch_u(dzqw,distrib_vanleer,dist)
    3745    CALL switch_u(adzqw,distrib_vanleer,dist)
     46    ! CRisi:
     47    if (nqdesc_tot.gt.0) then   
     48    !CALL switch_u(masseq,distrib_vanleer,dist)
     49    CALL switch_u(Ratio,distrib_vanleer,dist)
     50    endif !if (nqdesc_tot.gt.0) then     
    3851
    3952  END SUBROUTINE vlz_switch_vanleer 
Note: See TracChangeset for help on using the changeset viewer.