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.
#1696 (ice-air coupling (LIM3). part1: snow blown by the winds) – NEMO

Opened 8 years ago

Closed 8 years ago

Last modified 2 years ago

#1696 closed Bug (fixed)

ice-air coupling (LIM3). part1: snow blown by the winds

Reported by: clem Owned by: nemo
Priority: normal Milestone:
Component: LIM3 Version: v3.6
Severity: Keywords: LIM* v3.6
Cc:

Description

In LIM3, a portion of the snow that falls on ice is considered to be blown away by the winds. It then falls in the ocean, and should be counted for in the fresh water budget of the ocean (emp_oce). It is done correctly in forced mode but not in coupled mode. Therefore emp_oce and emp_ice should be changed in sbccpl.F90 as follows:

! zsnw = snow percentage over ice after wind blowing
 zsnw(:,:) = 0._wp
 CALL lim_thd_snwblow( p_frld, zsnw )
      
! --- evaporation minus precipitation corrected for the effect of wind blowing on snow --- !
 zemp_oce(:,:) = zemp_tot(:,:) - zemp_ice(:,:) - zsprecip * (1._wp - zsnw)
 zemp_ice(:,:) = zemp_ice(:,:) + zsprecip * (1._wp - zsnw)

Commit History (1)

ChangesetAuthorTimeChangeLog
6399clem2016-03-22T18:17:23+01:00

solve issues for 1)wrong fresh water budget sent to passive tracers and 2)ice-air coupling. See tickets #1694 #1696 #1697 and #1698

Change History (6)

comment:1 Changed 8 years ago by clem

solved at r6399

comment:2 Changed 8 years ago by clem

  • Resolution set to fixed
  • Status changed from new to closed

comment:3 Changed 6 years ago by nemo

  • Keywords LIM* added

comment:4 Changed 6 years ago by nemo

  • Keywords release-3.6* added

comment:5 Changed 6 years ago by nemo

  • Keywords release-3.6* removed

comment:6 Changed 2 years ago by nemo

  • Keywords v3.6 added
Note: See TracTickets for help on using tickets.