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 for fvcom_tools.fd #339

Merged
merged 8 commits into from
Feb 25, 2021
Merged
Show file tree
Hide file tree
Changes from 3 commits
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
5 changes: 5 additions & 0 deletions sorc/fvcom_tools.fd/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# This is the CMake file for the fvcom_tools utility in the UFS_UTILS
# project.
#
# David Wright

set(fortran_src
kinds.f90
module_ncio.f90
Expand Down
16 changes: 6 additions & 10 deletions sorc/fvcom_tools.fd/kinds.f90
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
!> @file
!! . . . .
!! Module to hold specification kinds for variable declaration.
!! @brief Module to hold specification kinds for variable declaration.
!!
!! This module is based on (copied from) Paul vanDelst's
!! type_kinds module found in the community radiative transfer
!! model
!!
!! The numerical data types defined in this module are:
!! - r_single - specification kind for single precision (4-byte) real variable
!! - i_kind - generic specification kind for default integer
!! - r_kind - generic specification kind for default floating point
!!
!! @author David Wright, University of Michigan
module kinds
implicit none
private
Expand All @@ -20,12 +16,12 @@ module kinds
! Integer type definitions below

! Integer types
integer, parameter, public :: i_kind = 4
integer, parameter, public :: i_kind = 4 !< generic specification kind for default integer.
integer, parameter, public :: i_short = 2
integer, parameter, public :: i_byte = 1
! Real types
integer, parameter, public :: r_single = 4 ! single precision
integer, parameter, public :: r_kind = 8
integer, parameter, public :: r_single = 4 !< specification kind for single precision (4-byte) real variable.
integer, parameter, public :: r_kind = 8 !< generic specification kind for default floating point

!
real(r_single),parameter,public :: rmissing=-99999.0
Expand Down
Loading