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 6101 for branches/2015/dev_r5003_MERCATOR6_CRS/NEMOGCM/NEMO/OPA_SRC/ZDF/zdfmxl_crs.F90 – NEMO

Ignore:
Timestamp:
2015-12-17T16:48:41+01:00 (8 years ago)
Author:
cbricaud
Message:

correction of bugs from last update and improvments for CRS

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2015/dev_r5003_MERCATOR6_CRS/NEMOGCM/NEMO/OPA_SRC/ZDF/zdfmxl_crs.F90

    r5601 r6101  
    6464      REAL(wp) ::   zN2_c        ! local scalar 
    6565      INTEGER, POINTER, DIMENSION(:,:) ::   imld   ! 2D workspace 
     66      REAL(wp), POINTER, DIMENSION(:,:) ::  z2d   ! 2D workspace 
    6667      !!---------------------------------------------------------------------- 
    6768      ! 
     
    6970      ! 
    7071      CALL wrk_alloc( jpi_crs,jpj_crs, imld ) 
     72      CALL wrk_alloc( jpi_crs,jpj_crs, z2d ) 
    7173 
    7274      IF( kt == nit000 ) THEN 
     
    98100      END DO 
    99101      ! 
     102      z2d=REAL(nmln_crs,wp) 
     103      CALL iom_put("nmln_crs",z2d) 
     104      CALL iom_put("hmlpt_crs",hmlpt_crs) 
     105      ! 
    100106      CALL wrk_dealloc( jpi_crs,jpj_crs, imld ) 
     107      CALL wrk_dealloc( jpi_crs,jpj_crs, z2d ) 
    101108      ! 
    102109      IF( nn_timing == 1 )  CALL timing_stop('zdf_mxl_crs') 
Note: See TracChangeset for help on using the changeset viewer.