Changeset 371 for codes/icosagcm


Ignore:
Timestamp:
04/08/16 09:18:36 (8 years ago)
Author:
dubos
Message:

Bugfix : NH slow tendencies for W,Phi were ignored

File:
1 edited

Legend:

Unmodified
Added
Removed
  • codes/icosagcm/trunk/src/hevi_scheme.f90

    r366 r371  
    1919    ! See Weller et al., 2013 - ARK2 scheme Fig. 2 
    2020    REAL(rstd) :: dt 
    21     REAL(rstd), PARAMETER :: alpha=(3.+SQRT(8.))/6., delta=.5/SQRT(2.), gamma=1.-2.*delta 
     21    REAL(rstd), PARAMETER :: delta=.5/SQRT(2.), gamma=1.-2.*delta 
     22!    REAL(rstd), PARAMETER :: alpha=(3.+SQRT(8.))/6. ! original value in GKC2013 
     23    REAL(rstd), PARAMETER :: alpha=0.7 
    2224    REAL(rstd), PARAMETER, DIMENSION(3) :: wj = (/delta,delta,gamma/) 
    2325    CALL set_coefs_hevi(dt, & 
     
    8486          CALL update(cjl(l,j), f_u, f_du_fast(:,l)) 
    8587          IF(.NOT. hydrostatic) THEN 
    86  !            CALL update(bjl(l,j), f_W, f_dW_slow(:,l)) ! slow tendencies of w, Phi not implemented yet 
     88             CALL update(bjl(l,j), f_W, f_dW_slow(:,l)) 
    8789             CALL update(cjl(l,j), f_W, f_dW_fast(:,l)) 
    88  !            CALL update(bjl(l,j), f_geopot, f_dPhi_slow(:,l)) 
     90             CALL update(bjl(l,j), f_geopot, f_dPhi_slow(:,l)) 
    8991             CALL update(cjl(l,j), f_geopot, f_dPhi_fast(:,l)) 
    9092          END IF 
Note: See TracChangeset for help on using the changeset viewer.