#2102 closed Bug (fixed)
Wrong averaging in AGRIF sponge definition at F-points
Reported by: | jchanut | Owned by: | jchanut |
---|---|---|---|
Priority: | low | Milestone: | |
Component: | AGRIF | Version: | v3.6 |
Severity: | minor | Keywords: | AGRIF v3.6 |
Cc: |
Description (last modified by nicolasmartin)
Context
Agrif sponge values are not computed properly at F-points from T-point array
Analysis
The code actually holds this
fsahm_spf(ji,jj) = 0.25_wp * visc_dyn * ( ztabramp(ji,jj) + ztabramp(ji ,jj+1) & & +ztabramp(ji,jj) + ztabramp(ji+1,jj ) )
Fix
It should be that:
fsahm_spf(ji,jj) = 0.25_wp * visc_dyn * ( ztabramp(ji ,jj ) + ztabramp(ji ,jj+1) & & +ztabramp(ji+1,jj+1) + ztabramp(ji+1,jj ) )
Commit History (1)
Changeset | Author | Time | ChangeLog |
---|---|---|---|
9806 | jchanut | 2018-06-15T17:57:53+02:00 | Differentiates x and y refinement in tracer bc ; correct sponge #2102 ; Passes x and y symmetry tests |
Change History (4)
comment:1 Changed 6 years ago by nicolasmartin
- Description modified (diff)
comment:2 Changed 6 years ago by jchanut
comment:3 Changed 6 years ago by jchanut
- Resolution set to fixed
- Status changed from new to closed
comment:4 Changed 3 years ago by nemo
- Keywords v3.6 added
Note: See
TracTickets for help on using
tickets.
In 9806: