Skip to content

Commit

Permalink
Fixes to hflx_limiter_pd_stencil_02 to make it pass probtest
Browse files Browse the repository at this point in the history
  • Loading branch information
muellch authored and Nina Burgdorfer committed Nov 29, 2022
1 parent 6fda446 commit 7cd58ed
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions advection/src/icon4py/advection/hflx_limiter_pd_stencil_02.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,13 @@ def _hflx_limiter_pd_stencil_02(
def hflx_limiter_pd_stencil_02(
refin_ctrl: Field[[EdgeDim], float],
r_m: Field[[CellDim, KDim], float],
p_mflx_tracer_h_in: Field[[EdgeDim, KDim], float],
p_mflx_tracer_h_out: Field[[EdgeDim, KDim], float],
p_mflx_tracer_h: Field[[EdgeDim, KDim], float],
bound: float,
):
_hflx_limiter_pd_stencil_02(
refin_ctrl,
r_m,
p_mflx_tracer_h_in,
p_mflx_tracer_h,
bound,
out=p_mflx_tracer_h_out,
out=p_mflx_tracer_h,
)

0 comments on commit 7cd58ed

Please sign in to comment.