New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
Changeset 3862 for branches/2013/dev_r3858_NOC_ZTC/NEMOGCM/NEMO/SAS_SRC/diawri.F90 – NEMO

Ignore:
Timestamp:
2013-04-08T13:07:43+02:00 (11 years ago)
Author:
acc
Message:

Branch 2013/dev_r3858_NOC_ZTC #863. Change names of gdept_0, gdepw_0, e3t_0, e3w_0 to gdept_1d, gdepw_1d, e3t_1d, e3w_1d respectively in preparation for the introduction of time invariant 3d arrays using the _0 suffix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2013/dev_r3858_NOC_ZTC/NEMOGCM/NEMO/SAS_SRC/diawri.F90

    r3331 r3862  
    220220            &          nit000-1, zjulian, zdt, nh_T, nid_T, domain_id=nidom, snc4chunks=snc4set ) 
    221221         CALL histvert( nid_T, "deptht", "Vertical T levels",      &  ! Vertical grid: gdept 
    222             &           "m", ipk, gdept_0, nz_T, "down" ) 
     222            &           "m", ipk, gdept_1d, nz_T, "down" ) 
    223223         !                                                            ! Index of ocean points 
    224224         CALL wheneq( jpi*jpj    , tmask, 1, 1., ndex_hT, ndim_hT )      ! surface 
     
    232232            &          nit000-1, zjulian, zdt, nh_U, nid_U, domain_id=nidom, snc4chunks=snc4set ) 
    233233         CALL histvert( nid_U, "depthu", "Vertical U levels",      &  ! Vertical grid: gdept 
    234             &           "m", ipk, gdept_0, nz_U, "down" ) 
     234            &           "m", ipk, gdept_1d, nz_U, "down" ) 
    235235         !                                                            ! Index of ocean points 
    236236         CALL wheneq( jpi*jpj    , umask, 1, 1., ndex_hU, ndim_hU )      ! surface 
     
    244244            &          nit000-1, zjulian, zdt, nh_V, nid_V, domain_id=nidom, snc4chunks=snc4set ) 
    245245         CALL histvert( nid_V, "depthv", "Vertical V levels",      &  ! Vertical grid : gdept 
    246             &          "m", ipk, gdept_0, nz_V, "down" ) 
     246            &          "m", ipk, gdept_1d, nz_V, "down" ) 
    247247         !                                                            ! Index of ocean points 
    248248         CALL wheneq( jpi*jpj    , vmask, 1, 1., ndex_hV, ndim_hV )      ! surface 
     
    391391          1, jpi, 1, jpj, nit000-1, zjulian, zdt, nh_i, id_i, domain_id=nidom, snc4chunks=snc4set ) ! Horizontal grid : glamt and gphit 
    392392      CALL histvert( id_i, "deptht", "Vertical T levels",   &    ! Vertical grid : gdept 
    393           "m", jpk, gdept_0, nz_i, "down") 
     393          "m", jpk, gdept_1d, nz_i, "down") 
    394394 
    395395      ! Declare all the output fields as NetCDF variables 
Note: See TracChangeset for help on using the changeset viewer.