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 886 for branches/dev_001_SBC/NEMO/LIM_SRC_2 – NEMO

Ignore:
Timestamp:
2008-04-11T11:24:17+02:00 (16 years ago)
Author:
ctlod
Message:

dev_001_SBC: Step II: adapt new SBC to LIM 3.0 component, see ticket: #112

Location:
branches/dev_001_SBC/NEMO/LIM_SRC_2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/dev_001_SBC/NEMO/LIM_SRC_2/limsbc_2.F90

    r882 r886  
    8585#if defined key_coupled     
    8686      REAL(wp), DIMENSION(jpi,jpj) ::   zalb     ! albedo of ice under overcast sky 
    87       REAL(wp), DIMENSION(jpi,jpj) ::   zalcn    ! albedo of ocean under overcast sky 
    8887      REAL(wp), DIMENSION(jpi,jpj) ::   zalbp    ! albedo of ice under clear sky 
    89       REAL(wp), DIMENSION(jpi,jpj) ::   zaldum   ! albedo of ocean under clear sky 
    9088#endif 
    9189      REAL(wp) ::   zsang, zmod, zfm 
     
    224222      !------------------------------------------------! 
    225223      zalb  (:,:) = 0.e0 
    226       zalcn (:,:) = 0.e0 
    227224      zalbp (:,:) = 0.e0 
    228       zaldum(:,:) = 0.e0 
    229  
    230       CALL blk_albedo( zalb, zalcn, zalbp, zaldum ) 
     225 
     226      CALL albedo_ice( sist, hicif, hsnif, zalbp, zalb ) 
    231227 
    232228      alb_ice(:,:) =  0.5 * zalbp(:,:) + 0.5 * zalb (:,:)   ! Ice albedo (mean clear and overcast skys) 
  • branches/dev_001_SBC/NEMO/LIM_SRC_2/limwri_dimg_2.h90

    r882 r886  
    123123          zcmo(ji,jj,15) = utaui_ice(ji,jj) 
    124124          zcmo(ji,jj,16) = vtaui_ice(ji,jj) 
    125           zcmo(ji,jj,17) = qsr_ice (ji,jj) 
    126           zcmo(ji,jj,18) = qnsr_ice(ji,jj) 
     125          zcmo(ji,jj,17) = qsr_ice(ji,jj) 
     126          zcmo(ji,jj,18) = qns_ice(ji,jj) 
    127127          zcmo(ji,jj,19) = sprecip(ji,jj) 
    128128       END DO 
     
    166166                rcmoy(ji,jj,15) = utaui_ice(ji,jj) 
    167167                rcmoy(ji,jj,16) = vtaui_ice(ji,jj) 
    168                 rcmoy(ji,jj,17) = qsr_ice (ji,jj) 
    169                 rcmoy(ji,jj,18) = qnsr_ice(ji,jj) 
     168                rcmoy(ji,jj,17) = qsr_ice(ji,jj) 
     169                rcmoy(ji,jj,18) = qns_ice(ji,jj) 
    170170                rcmoy(ji,jj,19) = sprecip(ji,jj) 
    171171             END DO 
Note: See TracChangeset for help on using the changeset viewer.