Ignore:
Timestamp:
05/28/16 00:32:21 (8 years ago)
Author:
dubos
Message:

Infrastructure for multiple dynamical tracers - tested with JW06 and moist baroclinic wave

File:
1 edited

Legend:

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

    r382 r387  
    137137    REAL(rstd),POINTER :: mass(:,:) 
    138138    REAL(rstd),POINTER :: phis(:) 
    139     REAL(rstd),POINTER :: theta_rhodz(:,:) 
     139    REAL(rstd),POINTER :: theta_rhodz(:,:,:) 
    140140    REAL(rstd),POINTER :: temp(:,:) 
    141141    REAL(rstd),POINTER :: u(:,:) 
     
    162162 
    163163      IF( TRIM(etat0_type)=='williamson91.6' ) THEN 
    164        CALL compute_etat0_collocated(ps,mass, phis, theta_rhodz, u, geopot, W, q) 
     164         CALL compute_etat0_collocated(ps,mass, phis, theta_rhodz(:,:,1), u, geopot, W, q) 
    165165      ELSE 
    166        CALL compute_etat0_collocated(ps,mass, phis, temp, u, geopot, W, q) 
     166         CALL compute_etat0_collocated(ps,mass, phis, temp, u, geopot, W, q) 
    167167      ENDIF 
    168168    ENDDO 
Note: See TracChangeset for help on using the changeset viewer.