#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)
Changeset | Author | Time | ChangeLog |
---|---|---|---|
6399 | clem | 2016-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 9 years ago by clem
comment:2 Changed 9 years ago by clem
- Resolution set to fixed
- Status changed from new to closed
comment:3 Changed 7 years ago by nemo
- Keywords LIM* added
comment:4 Changed 7 years ago by nemo
- Keywords release-3.6* added
comment:5 Changed 7 years ago by nemo
- Keywords release-3.6* removed
comment:6 Changed 3 years ago by nemo
- Keywords v3.6 added
Note: See
TracTickets for help on using
tickets.
solved at r6399