Ignore:
Timestamp:
Mar 20, 2014, 10:57:19 AM (10 years ago)
Author:
Laurent Fairhead
Message:

Merged trunk changes r1920:1997 into testing branch

Location:
LMDZ5/branches/testing
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • LMDZ5/branches/testing

  • LMDZ5/branches/testing/libf/phylmd/phys_state_var_mod.F90

    r1910 r1999  
    357357!!! fin nrlmd le 10/04/2012
    358358
     359      REAL, ALLOCATABLE, SAVE:: du_gwd_rando(:, :), dv_gwd_rando(:, :)
     360      !$OMP THREADPRIVATE(du_gwd_rando, dv_gwd_rando)
     361      ! tendencies on wind due to gravity waves
     362
    359363CONTAINS
    360364
     
    376380! climatology and the daylight climatology
    377381
     382include "clesphys.h"
    378383      ALLOCATE(rlat(klon), rlon(klon))
    379384      ALLOCATE(pctsrf(klon,nbsrf))
     
    517522      ALLOCATE(ale_bl_trig(klon))
    518523!!! fin nrlmd le 10/04/2012
     524      if (ok_gwd_rando) allocate(du_gwd_rando(klon, klev), &
     525           dv_gwd_rando(klon, klev))
    519526
    520527END SUBROUTINE phys_state_var_init
     
    526533USE indice_sol_mod
    527534IMPLICIT NONE
     535include "clesphys.h"
    528536
    529537      deallocate(rlat, rlon, pctsrf, ftsol, falb1, falb2)
     
    624632      deallocate(tau_aero,piz_aero,cg_aero)
    625633      deallocate(ccm)
     634      if (ok_gwd_rando) deallocate(du_gwd_rando, dv_gwd_rando)
    626635       
    627636!!! nrlmd le 10/04/2012
Note: See TracChangeset for help on using the changeset viewer.