Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Doxygen in kinds_mod.F, native_endianness.f, UPP_MATH.f and UPP_PHYSICS.f. #479

Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 13 additions & 17 deletions sorc/ncep_post.fd/UPP_MATH.f
Original file line number Diff line number Diff line change
@@ -1,21 +1,17 @@
!> @file
!
!> SUBPROGRAM: UPP_MATH
!! @author JMENG @date 2020-05-20
!!
!! A collection of UPP subroutines for numerical math functions calculation.
!!
!! DVDXDUDY
!! computes dudy, dvdx, uwnd
!!
!! H2U, H2V, U2H, V2H
!! interpolates variables between U, V, H, points
!! adopted from UPP subroutine GRIDAVG.f
!!
!! PROGRAM HISTORY LOG:
!! MAY 20 2020 Jesse Meng Initial code
!!------------------------------------------------------------------------
!!
!> @brief module: upp_math is a collection of UPP subroutines for numerical math functions calculation.
kayeekayee marked this conversation as resolved.
Show resolved Hide resolved
!>
!> dvdxdudy() computes dudy, dvdx, uwnd
!>
!> h2u(), h2v(), u2h(), v2h() interpolate variables between U, V, H, points
!> adopted from UPP subroutine GRIDAVG.f
!>
!> ### Program history log:
!> Date | Programmer | Comments
!> -----|------------|---------
!> 2020-05-20 | Jesse Meng | Initial
!>
!> @author Jesse Meng @date 2020-05-20
module upp_math

use masks, only: dx, dy
Expand Down
Loading