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

Update doxygen for orog_mask_tools.fd. #421

Merged
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
d1d06d6
doxygen updates to orog.fd.
GeorgeGayno-NOAA Mar 10, 2021
ec88010
Clear some doxygen warnings from orog.fd
GeorgeGayno-NOAA Mar 11, 2021
5bdc399
Add doxygen to ./orog.fd/mtnlm7_oclsm.f. Remove unused routine
GeorgeGayno-NOAA Mar 11, 2021
60c47f8
Merge branch 'develop' into feature/doxorog
GeorgeGayno-NOAA Mar 11, 2021
cb271d4
Doxygen updates to ./orog.fd/mtnlm7_oclsm.f
GeorgeGayno-NOAA Mar 11, 2021
3e4c291
Clear some doxygen warnings from orog.fd
GeorgeGayno-NOAA Mar 12, 2021
96c4a40
Clear more doxygen warnings from orog.fd
GeorgeGayno-NOAA Mar 12, 2021
4738d89
Get rid of unused machine.f90 from orog.fd.
GeorgeGayno-NOAA Mar 12, 2021
8522114
Clear doxygen warnings from lake.fd code.
GeorgeGayno-NOAA Mar 12, 2021
b74424f
Doxygen updates to ./orog.fd/mtnlm7_oclsm.f
GeorgeGayno-NOAA Mar 15, 2021
6bc0939
Add doxygen to ./orog.fd/mtnlm7_oclsm.f
GeorgeGayno-NOAA Mar 15, 2021
f3b248e
Doxygen updates to ./orog.fd/mtnlm7_oclsm.f
GeorgeGayno-NOAA Mar 16, 2021
128f2a1
Merge branch 'develop' into feature/doxorog
GeorgeGayno-NOAA Mar 16, 2021
f61d08e
Doxygen updates to ./orog.fd/mtnlm7_oclsm.f
GeorgeGayno-NOAA Mar 16, 2021
dd77b7e
Doxygen updates to ./orog.fd/mtnlm7_oclsm.f.
GeorgeGayno-NOAA Mar 16, 2021
b36df62
Doxygen updates to ./orog.fd/mtnlm7_oclsm.f
GeorgeGayno-NOAA Mar 16, 2021
e0a5bc2
More doxygen updates to ./orog.fd/mtnlm7_oclsm.f
GeorgeGayno-NOAA Mar 16, 2021
afd9cff
Doxygen updates to ./orog.fd/mtnlm7_oclsm.f
GeorgeGayno-NOAA Mar 16, 2021
faba1ee
Merge branch 'develop' into feature/doxorog
GeorgeGayno-NOAA Mar 17, 2021
6f3b082
Doxygen updates to ./orog.fd/mtnlm7_oclsm.f
GeorgeGayno-NOAA Mar 17, 2021
8428a32
Doxygen updates to ./orog.fd/mtnlm7_oclsm.f
GeorgeGayno-NOAA Mar 17, 2021
20e85f0
Doxygen updates to ./orog.fd/mtnlm7_oclsm.f
GeorgeGayno-NOAA Mar 17, 2021
5378c73
Doxygen updates to ./lake.fd/lakefrac.F90 and
GeorgeGayno-NOAA Mar 17, 2021
a05f8bb
Doxygen updates to ./lake.fd/find_limit.F90
GeorgeGayno-NOAA Mar 17, 2021
4a22fec
Merge branch 'develop' into feature/doxorog
GeorgeGayno-NOAA Mar 23, 2021
f4066c8
Doxygen update to ./lake.fd/find_limit.F90
GeorgeGayno-NOAA Mar 23, 2021
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
Prev Previous commit
Next Next commit
More doxygen updates to ./orog.fd/mtnlm7_oclsm.f
Part of #191
Fixes #344
Fixes #408
  • Loading branch information
GeorgeGayno-NOAA committed Mar 16, 2021
commit e0a5bc29492f9425992be41ac0fb4ee0b72540f9
36 changes: 20 additions & 16 deletions sorc/orog_mask_tools.fd/orog.fd/mtnlm7_oclsm.f
Original file line number Diff line number Diff line change
Expand Up @@ -2876,14 +2876,16 @@ SUBROUTINE MAKEOA(ZAVG,VAR,GLAT,OA4,OL,IOA4,ELVMAX,
WRITE(6,*) "! MAKEOA EXIT"
C
RETURN
END
END SUBROUTINE MAKEOA

!> Get longitude angle
!> Convert the 'x' direction distance of a cubed-sphere grid
!! point to the corresponding distance in longitude.
!!
!! @param[in] dx ???
!! @param[in] lat ???
!! @param[in] degrad ???
!! @return get_lon_angle Longitude angle.
!! @param[in] dx Distance along the 'x' direction of a
!! cubed-sphere grid point.
!! @param[in] lat Latitude of the cubed-sphere point.
!! @param[in] degrad Conversion from radians to degrees.
!! @return get_lon_angle Corresponding distance in longitude.
!! @author GFDL programmer
function get_lon_angle(dx,lat, DEGRAD)
implicit none
Expand All @@ -2896,11 +2898,13 @@ function get_lon_angle(dx,lat, DEGRAD)

end function get_lon_angle

!> Get latitude angle
!> Convert the 'y' direction distance of a cubed-sphere grid
!! point to the corresponding distance in latitude.
!!
!! @param[in] dy ???
!! @param[in] degrad ???
!! @return get_lat_angle ???
!! @param[in] dy Distance along the 'y' direction of a cubed-sphere
!! point.
!! @param[in] degrad Conversion from radians to degrees.
!! @return get_lat_angle Corresponding distance in latitude.
!! @author GFDL programmer
function get_lat_angle(dy, DEGRAD)
implicit none
Expand Down Expand Up @@ -3333,14 +3337,14 @@ SUBROUTINE MAKEOA2(ZAVG,zslm,VAR,GLAT,OA4,OL,IOA4,ELVMAX,
WRITE(6,*) "! MAKEOA2 EXIT"
C
RETURN
END
END SUBROUTINE MAKEOA2

!> Compute a great circle distance
!> Compute a great circle distance between two points.
!!
!! @param[in] theta1 ???
!! @param[in] phi1 ???
!! @param[in] theta2 ???
!! @param[in] phi2 ???
!! @param[in] theta1 Longitude of point 1.
!! @param[in] phi1 Latitude of point 1.
!! @param[in] theta2 Longitude of point 2.
!! @param[in] phi2 Latitude of point2.
!! @return spherical_distance Great circle distance.
!! @author GFDL programmer
function spherical_distance(theta1,phi1,theta2,phi2)
Expand Down