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 10115 for NEMO/branches/2018/dev_r5003_MERCATOR6_CRS/NEMOGCM/NEMO/OPA_SRC/ASM/asminc.F90 – NEMO

Ignore:
Timestamp:
2018-09-12T15:59:13+02:00 (6 years ago)
Author:
cbricaud
Message:

phase 3.6 coarsening branch with nemo_3.6_rev9192

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/2018/dev_r5003_MERCATOR6_CRS/NEMOGCM/NEMO/OPA_SRC/ASM/asminc.F90

    r7256 r10115  
    8787   REAL(wp), DIMENSION(:,:), ALLOCATABLE ::   ssh_bkg, ssh_bkginc   ! Background sea surface height and its increment 
    8888   REAL(wp), DIMENSION(:,:), ALLOCATABLE ::   seaice_bkginc         ! Increment to the background sea ice conc 
     89#if defined key_cice && defined key_asminc 
     90   REAL(wp), DIMENSION(:,:), ALLOCATABLE ::   ndaice_da             ! ice increment tendency into CICE 
     91#endif 
    8992 
    9093   !! * Substitutions 
     
    336339      ALLOCATE( ssh_iau(jpi,jpj)      ) 
    337340#endif 
     341#if defined key_cice && defined key_asminc 
     342      ALLOCATE( ndaice_da(jpi,jpj)      ) 
     343#endif 
    338344      t_bkginc(:,:,:) = 0.0 
    339345      s_bkginc(:,:,:) = 0.0 
     
    344350#if defined key_asminc 
    345351      ssh_iau(:,:)    = 0.0 
     352#endif 
     353#if defined key_cice && defined key_asminc 
     354      ndaice_da(:,:) = 0.0 
    346355#endif 
    347356      IF ( ( ln_trainc ).OR.( ln_dyninc ).OR.( ln_sshinc ).OR.( ln_seaiceinc ) ) THEN 
     
    891900               DEALLOCATE( ssh_bkginc ) 
    892901            ENDIF 
    893  
     902#if defined key_asminc 
     903         ELSE IF( kt == nitiaufin_r+1 ) THEN 
     904            !   
     905            ssh_iau(:,:) = 0._wp 
     906            !  
     907#endif 
    894908         ENDIF 
    895909 
Note: See TracChangeset for help on using the changeset viewer.