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 7293 for branches/2016/dev_r6859_LIM3_meltponds/NEMOGCM/NEMO/LIM_SRC_3/limistate.F90 – NEMO

Ignore:
Timestamp:
2016-11-21T16:27:53+01:00 (7 years ago)
Author:
vancop
Message:

Commit infrastructure for melt pond impletation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2016/dev_r6859_LIM3_meltponds/NEMOGCM/NEMO/LIM_SRC_3/limistate.F90

    r7060 r7293  
    407407         at_i (:,:) = at_i (:,:) + a_i (:,:,jl) 
    408408      END DO 
     409 
     410      ! MV MP 2016 
     411 
     412      ! For now, we just assume that melt ponds are absent initially 
     413      ! We probably have to revise this and code it as for all other sea ice variables later on 
    409414      ! 
     415      !-------------------------------------------------------------------- 
     416      ! X) Melt pond variables 
     417      !-------------------------------------------------------------------- 
     418      ! 
     419      IF ( ln_limMP ) THEN 
     420         a_ip(:,:,:) = 0._wp 
     421         v_ip(:,:,:) = 0._wp 
     422         h_ip(:,:,:) = 0._wp 
     423         a_ip_frac(:,:,:) = 0._wp 
     424 
     425         at_ip(:,:) = 0._wp 
     426         vt_ip(:,:) = 0._wp 
     427      ENDIF 
     428 
     429      ! END MV MP 2016 
     430 
    410431      !-------------------------------------------------------------------- 
    411432      ! 4) Global ice variables for output diagnostics                    |  
     
    450471      syyage (:,:,:)  = 0._wp 
    451472      sxyage (:,:,:)  = 0._wp 
     473 
     474      ! MV MP 2016 
     475      IF ( ln_limMP ) THEN 
     476         sxap  (:,:) = 0._wp    ; sxvp  (:,:) = 0._wp  
     477         syap  (:,:) = 0._wp    ; syvp  (:,:) = 0._wp  
     478         sxxap (:,:) = 0._wp    ; sxxvp (:,:) = 0._wp  
     479         syyap (:,:) = 0._wp    ; syyvp (:,:) = 0._wp  
     480         sxyap (:,:) = 0._wp    ; sxyvp (:,:) = 0._wp 
     481      ENDIF 
     482      ! END MV MP 2016 
    452483 
    453484!!!clem 
Note: See TracChangeset for help on using the changeset viewer.