#538 closed Bug (fixed)
bug in ice-ocean surface stress with nn_ico_cpl = 2
Reported by: | bouillon | Owned by: | nemo |
---|---|---|---|
Priority: | normal | Milestone: | |
Component: | OCE | Version: | trunk |
Severity: | Keywords: | LIM* SBC coupling stress | |
Cc: |
Description
There is a bug in LIM_SRC_3/limsbc.F90 at line 206-207.
As we want to do the mean between the current ocean surface velocity and the past ocean surface velocity, the line
zu_ico = u_ice(ji,jj) - 0.5 * ( ub(ji,jj,1) - ssu_mb(ji,jj) )
should be
zu_ico = u_ice(ji,jj) - 0.5 * ( ub(ji,jj,1) + ssu_mb(ji,jj) )
and the line
zv_ico = v_ice(ji,jj) - 0.5 * ( vb(ji,jj,1) - ssv_mb(ji,jj) )
should be
zv_ico = v_ice(ji,jj) - 0.5 * ( vb(ji,jj,1) + ssv_mb(ji,jj) )
The model is more stable with the bugfix.
Sylvain
Commit History (1)
Changeset | Author | Time | ChangeLog |
---|---|---|---|
1684 | rblod | 2009-10-28T11:27:35+01:00 | Correct a bug in LIM3 when averaging ocean surface velocity, see ticket #538 |
Change History (3)
comment:1 Changed 15 years ago by rblod
- Resolution set to fixed
- Status changed from new to closed
comment:2 Changed 8 years ago by nicolasmartin
- Keywords SBC added; sbc removed
comment:3 Changed 7 years ago by nemo
- Keywords LIM* added; LIM3 removed
Note: See
TracTickets for help on using
tickets.