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 8841 for branches/UKMO/ROMS_WAD_7832/NEMOGCM/NEMO/OPA_SRC/ASM/asminc.F90 – NEMO

Ignore:
Timestamp:
2017-11-29T05:08:05+01:00 (6 years ago)
Author:
deazer
Message:

Bring in Trunk Changes at version 8814
This revision wont run as is, requires next revision with merged changes
This revision serves as a reference point to what changes from the trunk at brought in by the merge
in the next revision

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/UKMO/ROMS_WAD_7832/NEMOGCM/NEMO/OPA_SRC/ASM/asminc.F90

    r6140 r8841  
    8686   REAL(wp), DIMENSION(:,:), ALLOCATABLE ::   ssh_bkg, ssh_bkginc   ! Background sea surface height and its increment 
    8787   REAL(wp), DIMENSION(:,:), ALLOCATABLE ::   seaice_bkginc         ! Increment to the background sea ice conc 
     88#if defined key_cice && defined key_asminc 
     89   REAL(wp), DIMENSION(:,:), ALLOCATABLE ::   ndaice_da             ! ice increment tendency into CICE 
     90#endif 
    8891 
    8992   !! * Substitutions 
     
    339342      ALLOCATE( ssh_iau(jpi,jpj)      ) 
    340343#endif 
     344#if defined key_cice && defined key_asminc 
     345      ALLOCATE( ndaice_da(jpi,jpj)      ) 
     346#endif 
    341347      t_bkginc(:,:,:) = 0.0 
    342348      s_bkginc(:,:,:) = 0.0 
     
    347353#if defined key_asminc 
    348354      ssh_iau(:,:)    = 0.0 
     355#endif 
     356#if defined key_cice && defined key_asminc 
     357      ndaice_da(:,:) = 0.0 
    349358#endif 
    350359      IF ( ( ln_trainc ).OR.( ln_dyninc ).OR.( ln_sshinc ).OR.( ln_seaiceinc ) ) THEN 
     
    759768            ENDIF 
    760769            ! 
     770#if defined key_asminc 
     771         ELSE IF( kt == nitiaufin_r+1 ) THEN 
     772            ! 
     773            ssh_iau(:,:) = 0._wp 
     774            ! 
     775#endif 
    761776         ENDIF 
    762777         !                          !----------------------------------------- 
Note: See TracChangeset for help on using the changeset viewer.