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 8848 for branches/UKMO/dev_r5518_GO6_package_r8356_plus_form_drag/NEMOGCM/NEMO/OPA_SRC/SBC/sbccpl.F90 – NEMO

Ignore:
Timestamp:
2017-11-29T17:01:42+01:00 (6 years ago)
Author:
jamrae
Message:

Renamed variable fmdice as rough_ice_fmd. Deleted some temporary write statements.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/UKMO/dev_r5518_GO6_package_r8356_plus_form_drag/NEMOGCM/NEMO/OPA_SRC/SBC/sbccpl.F90

    r8819 r8848  
    149149   INTEGER, PARAMETER ::   jps_bio_dms = 35           ! MEDUSA DMS surface concentration 
    150150   INTEGER, PARAMETER ::   jps_bio_chloro = 36        ! MEDUSA chlorophyll surface concentration 
    151    INTEGER, PARAMETER ::   jps_fmdice = 37            ! ice form drag 
     151   INTEGER, PARAMETER ::   jps_rough_ice_fmd = 37     ! ice form drag roughness length 
    152152   INTEGER, PARAMETER ::   jps_rough_ice_skin = 38    ! ice skin roughness length 
    153153   INTEGER, PARAMETER ::   jpsnd      = 38            ! total number of fields sent 
     
    875875      !                                                      !   Sea ice form drag       ! 
    876876      !                                                      ! ------------------------- ! 
    877       ssnd(jps_fmdice )%clname = 'OIceFmd' 
     877      ssnd(jps_rough_ice_fmd )%clname = 'OIceFmd' 
    878878      ssnd(jps_rough_ice_skin )%clname = 'ORghIcSk' 
    879879      SELECT CASE ( TRIM( sn_snd_icerough%cldes ) ) 
    880880         CASE ( 'none' ) 
    881             ssnd(jps_fmdice)%laction = .FALSE. 
     881            ssnd(jps_rough_ice_fmd)%laction = .FALSE. 
    882882            ssnd(jps_rough_ice_skin)%laction = .FALSE. 
    883883         CASE ( 'ice', 'weighted ice' )  
    884             ssnd(jps_fmdice)%laction = .TRUE. 
     884            ssnd(jps_rough_ice_fmd)%laction = .TRUE. 
    885885            ssnd(jps_rough_ice_skin)%laction = .TRUE. 
    886886         CASE default   ;   CALL ctl_stop( 'sbc_cpl_init: wrong definition of sn_snd_icerough%cldes' ) 
     
    26432643      !                                                      ! ------------------------- ! 
    26442644#if defined key_cice 
    2645       IF( ssnd(jps_fmdice)%laction ) THEN 
     2645      IF( ssnd(jps_rough_ice_fmd)%laction ) THEN 
    26462646          SELECT CASE( sn_snd_icerough%cldes ) 
    26472647             CASE( 'ice' ) 
    2648                 ztmp1(:,:) = fmdice(:,:) 
     2648                ztmp1(:,:) = rough_ice_fmd(:,:) 
    26492649             CASE( 'weighted ice' )  
    2650                 ztmp1(:,:) = fmdice(:,:) * fr_i(:,:) 
     2650                ztmp1(:,:) = rough_ice_fmd(:,:) * fr_i(:,:) 
    26512651             CASE default      ;  CALL ctl_stop( 'sbc_cpl_snd: wrong definition of sn_snd_icerough%cldes' ) 
    26522652          END SELECT 
    26532653      ENDIF 
    2654       IF( ssnd(jps_fmdice)%laction )   CALL cpl_snd( jps_fmdice, isec, RESHAPE ( ztmp1, (/jpi,jpj,1/) ), info )  
     2654      IF( ssnd(jps_rough_ice_fmd)%laction )   CALL cpl_snd( jps_rough_ice_fmd, isec, RESHAPE ( ztmp1, (/jpi,jpj,1/) ), info )  
    26552655 
    26562656      IF( ssnd(jps_rough_ice_skin)%laction ) THEN 
Note: See TracChangeset for help on using the changeset viewer.