Skip to content

Commit

Permalink
order
Browse files Browse the repository at this point in the history
  • Loading branch information
huppd committed Dec 7, 2023
1 parent 0293703 commit 934a532
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def _mo_velocity_advection_stencil_09(
e_bln_c_s: Field[[CEDim], wpfloat],
) -> Field[[CellDim, KDim], vpfloat]:
z_w_concorr_me_wp = astype(z_w_concorr_me, wpfloat)
z_w_concorr_mc_wp = neighbor_sum(z_w_concorr_me_wp(C2E) * e_bln_c_s(C2CE), axis=C2EDim)
z_w_concorr_mc_wp = neighbor_sum(e_bln_c_s(C2CE) * z_w_concorr_me_wp(C2E), axis=C2EDim)
return astype(z_w_concorr_mc_wp, vpfloat)


Expand Down

0 comments on commit 934a532

Please sign in to comment.