Skip to content

Commit

Permalink
Added tangent velocity component to OB segment data type
Browse files Browse the repository at this point in the history
- Place holder pointers for tangential velocity data
  • Loading branch information
adcroft committed Jan 11, 2017
1 parent e4e92e6 commit 5ca94c4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/core/MOM_open_boundary.F90
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,9 @@ module MOM_open_boundary
real, pointer, dimension(:,:,:) :: h=>NULL() !<The cell thickness (m) at OBC-points.
real, pointer, dimension(:,:,:) :: unh=>NULL() !<The grid-oriented normal layer transports (m3 s-1).
real, pointer, dimension(:,:) :: unhbt=>NULL() !<The vertically summed normal layer transports (m3 s-1).
real, pointer, dimension(:,:) :: unbt=>NULL() !<The vertically-averaged normal layer transport (m s-1).
real, pointer, dimension(:,:) :: unbt=>NULL() !<The vertically-averaged normal velocity (m s-1).
real, pointer, dimension(:,:,:) :: tangent_vel=>NULL() !<The layer velocity tangential to the OB segment (m s-1).
real, pointer, dimension(:,:) :: tangent_vel_bt=>NULL() !<The barotropic velocity tangential to the OB segment (m s-1).
real, pointer, dimension(:,:) :: eta=>NULL() !<The sea-surface elevation (m).
type(hor_index_type) :: HI !< Horizontal index ranges
end type OBC_segment_type
Expand Down

0 comments on commit 5ca94c4

Please sign in to comment.