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

Ignore:
Timestamp:
2009-06-11T14:20:08+02:00 (15 years ago)
Author:
smasson
Message:

[uv]taui_ice renamed [uv]tau_ice, see ticket:452

File:
1 edited

Legend:

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

    r1465 r1469  
    131131         END DO 
    132132                                                     ! Bulk formulea - provides the following fields: 
    133          ! utaui_ice, vtaui_ice : surface ice stress                     (U- & V-points)   [N/m2] 
    134          ! qsr_ice  , qns_ice   : solar & non solar heat flux over ice   (T-point)         [W/m2] 
    135          ! qla_ice              : latent heat flux over ice              (T-point)         [W/m2] 
    136          ! dqns_ice , dqla_ice : non solar & latent heat sensistivity   (T-point)         [W/m2] 
    137          ! tprecip  , sprecip   : total & solid precipitation            (T-point)         [Kg/m2/s] 
    138          ! fr1_i0   , fr2_i0    : 1sr & 2nd fraction of qsr penetration in ice             [%] 
     133         ! utau_ice, vtau_ice : surface ice stress                     (U- & V-points)   [N/m2] 
     134         ! qsr_ice , qns_ice  : solar & non solar heat flux over ice   (T-point)         [W/m2] 
     135         ! qla_ice            : latent heat flux over ice              (T-point)         [W/m2] 
     136         ! dqns_ice, dqla_ice : non solar & latent heat sensistivity   (T-point)         [W/m2] 
     137         ! tprecip , sprecip  : total & solid precipitation            (T-point)         [Kg/m2/s] 
     138         ! fr1_i0  , fr2_i0   : 1sr & 2nd fraction of qsr penetration in ice             [%] 
    139139         ! 
    140140         SELECT CASE( kblk ) 
    141141         CASE( 3 )                                       ! CLIO bulk formulation 
    142142            CALL blk_ice_clio( t_su , alb_ice_cs, alb_ice_os,                           & 
    143                &                      utaui_ice , vtaui_ice , qns_ice   , qsr_ice   ,   & 
     143               &                      utau_ice  , vtau_ice , qns_ice   , qsr_ice   ,   & 
    144144               &                      qla_ice   , dqns_ice  , dqla_ice  ,               & 
    145145               &                      tprecip   , sprecip   ,                           & 
     
    147147            !          
    148148         CASE( 4 )                                       ! CORE bulk formulation 
    149             CALL blk_ice_core( t_su , u_ice    , v_ice     , alb_ice_cs,               & 
    150                &                      utaui_ice, vtaui_ice , qns_ice   , qsr_ice   ,   & 
    151                &                      qla_ice  , dqns_ice  , dqla_ice  ,               & 
    152                &                      tprecip  , sprecip   ,                           & 
    153                &                      fr1_i0   , fr2_i0    , cl_grid, jpl  ) 
     149            CALL blk_ice_core( t_su , u_ice     , v_ice     , alb_ice_cs,               & 
     150               &                      utau_ice  , vtau_ice , qns_ice   , qsr_ice   ,   & 
     151               &                      qla_ice   , dqns_ice  , dqla_ice  ,               & 
     152               &                      tprecip   , sprecip   ,                           & 
     153               &                      fr1_i0    , fr2_i0    , cl_grid, jpl  ) 
    154154         END SELECT 
    155155 
     
    327327               WRITE(numout,*) ' oceanic stress utau      : ', utau(ji,jj)  
    328328               WRITE(numout,*) ' oceanic stress vtau      : ', vtau(ji,jj) 
    329                WRITE(numout,*) ' sea-ice stress utaui_ice : ', utaui_ice(ji,jj)  
    330                WRITE(numout,*) ' sea-ice stress vtaui_ice : ', vtaui_ice(ji,jj) 
     329               WRITE(numout,*) ' sea-ice stress utau_ice  : ', utau_ice(ji,jj)  
     330               WRITE(numout,*) ' sea-ice stress vtau_ice  : ', vtau_ice(ji,jj) 
    331331               WRITE(numout,*) ' oceanic speed u          : ', u_oce(ji,jj) 
    332332               WRITE(numout,*) ' oceanic speed v          : ', v_oce(ji,jj) 
     
    631631        WRITE(numout,*) ' - Stresses ' 
    632632        WRITE(numout,*) '   ~~~~~~~~ ' 
    633         WRITE(numout,*) ' utaui_ice  : ', utaui_ice(ki,kj)  
    634         WRITE(numout,*) ' vtaui_ice  : ', vtaui_ice(ki,kj) 
     633        WRITE(numout,*) ' utau_ice   : ', utau_ice(ki,kj)  
     634        WRITE(numout,*) ' vtau_ice   : ', vtau_ice(ki,kj) 
    635635        WRITE(numout,*) ' utau       : ', utau(ki,kj)  
    636636        WRITE(numout,*) ' vtau       : ', vtau(ki,kj) 
Note: See TracChangeset for help on using the changeset viewer.