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 15176 for NEMO/branches/UKMO/NEMO_4.0.4_momentum_trends/src/ICE/iceupdate.F90 – NEMO

Ignore:
Timestamp:
2021-08-09T16:08:00+02:00 (3 years ago)
Author:
davestorkey
Message:

UKMO/NEMO_4.0.4_momentum_trends:

  1. Output complete budget of 2D trends.
  2. Separate out ice-ocean stress from wind stress (for 2D budget).
  3. Allow thickness weighting of 2D trends.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/UKMO/NEMO_4.0.4_momentum_trends/src/ICE/iceupdate.F90

    r14075 r15176  
    2626   USE icectl         ! sea-ice: control prints 
    2727   USE zdfdrg  , ONLY : ln_drgice_imp 
     28   USE trd_oce , ONLY : l_trddyn         ! dynamics trends diagnostics 
    2829   ! 
    2930   USE in_out_manager ! I/O manager 
     
    379380            utau(ji,jj) = ( 1._wp - zat_u ) * utau_oce(ji,jj) + zat_u * zutau_ice 
    380381            vtau(ji,jj) = ( 1._wp - zat_v ) * vtau_oce(ji,jj) + zat_v * zvtau_ice 
     382            ! 
     383            IF( l_trddyn ) THEN 
     384               uiceoc(ji,jj) = zat_u * zutau_ice 
     385               viceoc(ji,jj) = zat_v * zvtau_ice 
     386            ENDIF 
     387            ! 
    381388         END DO 
    382389      END DO 
Note: See TracChangeset for help on using the changeset viewer.