Skip to content

Commit

Permalink
Include argument keyword for better clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
kuanchihwang committed Nov 22, 2024
1 parent 3096c2b commit dc5d19a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/dynamics/mpas/dyn_comp.F90
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ subroutine set_mpas_state_u()

nullify(ucellzonal, ucellmeridional)

call mpas_dynamical_core % compute_edge_wind(.false.)
call mpas_dynamical_core % compute_edge_wind(wind_tendency=.false.)
end subroutine set_mpas_state_u

!> Set MPAS state `w` (i.e., vertical velocity at cell interfaces).
Expand Down
2 changes: 1 addition & 1 deletion src/dynamics/mpas/dyn_coupling.F90
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ subroutine set_mpas_physics_tendency_ru()

nullify(u_tendency, v_tendency)

call mpas_dynamical_core % compute_edge_wind(.true.)
call mpas_dynamical_core % compute_edge_wind(wind_tendency=.true.)
end subroutine set_mpas_physics_tendency_ru

!> Set MPAS physics tendency `tend_rho_physics` (i.e., "coupled" tendency of dry air density due to physics).
Expand Down

0 comments on commit dc5d19a

Please sign in to comment.