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 1466 for trunk/NEMO/OPA_SRC/SBC/sbccpl.F90 – NEMO

Ignore:
Timestamp:
2009-06-11T09:48:51+02:00 (15 years ago)
Author:
smasson
Message:

replace cice_grid by cigr_type, see ticket:449

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEMO/OPA_SRC/SBC/sbccpl.F90

    r1465 r1466  
    645645      !! ** Method  :   transform the received stress from the atmosphere into 
    646646      !!             an atmosphere-ice stress in the (i,j) ocean referencial 
    647       !!             and at the velocity point of the sea-ice model (cice_grid): 
     647      !!             and at the velocity point of the sea-ice model (cigr_type): 
    648648      !!                'C'-grid : i- (j-) components given at U- (V-) point  
    649649      !!                'B'-grid : both components given at I-point  
     
    660660      !!                 first  as  2 components on the sphere  
    661661      !!                 second as  2 components oriented along the local grid 
    662       !!                 third  as  2 components on the cice_grid point  
     662      !!                 third  as  2 components on the cigr_type point  
    663663      !! 
    664664      !!                In 'oce and ice' case, only one vector stress field  
     
    668668      !!             transformation is done and only if the ice-grid is a 'B'-grid.  
    669669      !! 
    670       !! ** Action  :   return ptau_i, ptau_j, the stress over the ice at cice_grid point 
     670      !! ** Action  :   return ptau_i, ptau_j, the stress over the ice at cigr_type point 
    671671      !!---------------------------------------------------------------------- 
    672672      REAL(wp), INTENT(out), DIMENSION(jpi,jpj) ::   p_taui   ! i- & j-components of atmos-ice stress [N/m2] 
     
    730730         !     
    731731         !                                                  j+1   j     -----V---F 
    732          ! ice stress on ice velocity point (cice_grid)                  !       | 
     732         ! ice stress on ice velocity point (cigr_type)                  !       | 
    733733         ! (C-grid ==>(U,V) or B-grid ==> I)                      j      |   T   U 
    734734         !                                                               |       | 
     
    737737         !                                                              i-1  i   i 
    738738         !                                                               i      i+1 (for I) 
    739          SELECT CASE ( cice_grid ) 
     739         SELECT CASE ( cigr_type ) 
    740740            ! 
    741741         CASE( 'B' )                                         ! B-grid ==> I 
     
    10461046            END DO 
    10471047         CASE( 'weighted oce and ice' )    
    1048             IF( cice_grid == 'C' ) THEN      ! 'C'-grid ice velocity 
     1048            IF( cigr_type == 'C' ) THEN      ! 'C'-grid ice velocity 
    10491049               DO jj = 2, jpjm1 
    10501050                  DO ji = fs_2, fs_jpim1   ! vector opt. 
     
    10691069            CALL lbc_lnk( zitx1, 'T', -1. )   ;   CALL lbc_lnk( zity1, 'T', -1. ) 
    10701070         CASE( 'mixed oce-ice'        ) 
    1071             IF( cice_grid == 'C' ) THEN      ! 'C'-grid ice velocity 
     1071            IF( cigr_type == 'C' ) THEN      ! 'C'-grid ice velocity 
    10721072               DO jj = 2, jpjm1 
    10731073                  DO ji = fs_2, fs_jpim1   ! vector opt. 
Note: See TracChangeset for help on using the changeset viewer.