Skip to content

Commit

Permalink
Comments updated to reflect different possible units of uo
Browse files Browse the repository at this point in the history
  • Loading branch information
cspencerjones committed Oct 6, 2023
1 parent 8b12405 commit 0ddaa65
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions config_src/external/drifters/MOM_particles.F90
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,12 @@ subroutine particles_run(parts, time, uo, vo, ho, tv, use_uh, stagger)
! Arguments
type(particles), pointer :: parts !< Container for all types and memory
type(time_type), intent(in) :: time !< Model time
real, dimension(:,:,:), intent(in) :: uo !< Ocean zonal velocity [L T-1 ~>m s-1]
real, dimension(:,:,:), intent(in) :: vo !< Ocean meridional velocity [L T-1~> m s-1]
real, dimension(:,:,:), intent(in) :: uo !< If use_uh is false, ocean zonal velocity [L T-1 ~>m s-1].
!! If us_uh is true, accumulated zonal thickness fluxes
!! to advect tracers [H L2 ~> m3 or kg]
real, dimension(:,:,:), intent(in) :: vo !< If use_uh is false, ocean meridional velocity [L T-1 ~>m s-1].
!! If us_uh is true, accumulated meridional thickness fluxes
!! to advect tracers [H L2 ~> m3 or kg]
real, dimension(:,:,:), intent(in) :: ho !< Ocean layer thickness [H ~> m or kg m-2]
type(thermo_var_ptrs), intent(in) :: tv !< structure containing pointers to available thermodynamic fields
logical :: use_uh !< Flag for whether u and v are weighted by thickness
Expand Down

0 comments on commit 0ddaa65

Please sign in to comment.