Skip to content

Commit

Permalink
Merge branch 'develop' into feature/mfmehari/Krok_Obio
Browse files Browse the repository at this point in the history
  • Loading branch information
sdrabenh authored Feb 20, 2024
2 parents ddf0d7f + 07f7c5a commit 1667a9f
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ subroutine SetServices ( GC, RC )
LONG_NAME ='pressure velocity', &
UNITS ='Pa/s', &
DIMS = MAPL_DimsHorzVert, &
VLOCATION = MAPL_VLocationEdge, &
VLOCATION = MAPL_VLocationCenter, &
__RC__ )

call MAPL_AddExportSpec(GC, &
Expand Down Expand Up @@ -2122,7 +2122,11 @@ subroutine RUN ( GC, IMPORT, EXPORT, CLOCK, RC )
if (associated(TOUT)) TOUT = T
if (associated(VOUT)) VOUT = V
if (associated(UOUT)) UOUT = U
if (associated(OMOUT)) OMOUT = OM
if (associated(OMOUT)) then
do l=lbound(om,3),ubound(om,3)-1
OMOUT(:,:,l+1) = (om(:,:,l+1)+om(:,:,l))/2.0
enddo
end if
if (associated(PKEOUT)) PKEOUT = PKE

DEALLOCATE(THOBS)
Expand Down

0 comments on commit 1667a9f

Please sign in to comment.