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 changes for io/module_fv3_io_def.F90 and module_fv3_config.F90 #757

Merged
merged 6 commits into from
Jan 19, 2024
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
58 changes: 29 additions & 29 deletions io/module_fv3_io_def.F90
Original file line number Diff line number Diff line change
Expand Up @@ -9,91 +9,91 @@ module module_fv3_io_def
use esmf, only : esmf_maxstr
implicit none

!> Number of processors used in forecast run.
!> Number of processors used in the forecast grid component
edwardhartnett marked this conversation as resolved.
Show resolved Hide resolved
integer :: num_pes_fcst

!> Number of write tasks per group.
!> Number of write tasks per write group.
integer :: wrttasks_per_group

!> ???
!> Number of the write groups
integer :: write_groups

!> ???
!> Current write group
integer :: n_group

!> ???
!> Number of history files
integer :: num_files

!> ???
!> Number of the ESMF field bundles for physics fields
integer :: nbdlphys

!> ???
!> IAU running window length
integer :: iau_offset

!> ???
!> Logical variable to decide if full time (HH.MM.SS) is used in the history
!! file names
logical :: lflname_fulltime

!> ???
!> Logical variable to decide if unlimited time dimension is used
logical :: time_unlimited


!> ???
!> Base names for model history output files
character(len=esmf_maxstr),dimension(:),allocatable :: filename_base

!> ???
!> Output file format
character(len=esmf_maxstr),dimension(:),allocatable :: output_file


!> ???
!> The first write task in a write group
integer,dimension(:),allocatable :: lead_wrttask

!> ???
!> The last write task in a write group
integer,dimension(:),allocatable :: last_wrttask


!> ???
!> Output grid type, e.g. "gaussian_grid"
character(len=esmf_maxstr),dimension(:),allocatable :: output_grid

!> ???
!> The i-dimension in the output grid
integer,dimension(:),allocatable :: imo

!> ???
!> The j-dimension in the output grid
integer,dimension(:),allocatable :: jmo

!> ???
!> Longitude of the center point in the output grid
real,dimension(:),allocatable :: cen_lon

!> ???
!> Latitude of the center pointer in the output grid
real,dimension(:),allocatable :: cen_lat

!> ???
!> Longitude of the first grid point in the output grid
real,dimension(:),allocatable :: lon1

!> ???
!> Latitude of the first pointer in the output grid
real,dimension(:),allocatable :: lat1

!> ???
!> Longitude of the last grid point in the output grid
real,dimension(:),allocatable :: lon2

!> ???
!> Latitude of the last pointer in the output grid
real,dimension(:),allocatable :: lat2

!> ???
!> Longitude increment
real,dimension(:),allocatable :: dlon

!> ???
!> Latitude increment
real,dimension(:),allocatable :: dlat

!> ???
!> The first latitude from the pole at which the secant cone cuts the sphere
real,dimension(:),allocatable :: stdlat1

!> ???
!> The second latitude from the pole at which the secant cone cuts the sphere
real,dimension(:),allocatable :: stdlat2

!> ???
!> x-direction grid length
real,dimension(:),allocatable :: dx

!> ???
!> y-direction grid length
real,dimension(:),allocatable :: dy

!> Deflate level to use, 0 means no deflate.
Expand Down
25 changes: 12 additions & 13 deletions module_fv3_config.F90
Original file line number Diff line number Diff line change
Expand Up @@ -11,39 +11,38 @@ module module_fv3_config
implicit none


!> ???
!> Atmosphere time step in seconds
integer :: dt_atmos

!> ???
!> The first integration step
integer :: first_kdt

!> ???
!> MPI communicator for the forecast grid component
integer :: fcst_mpi_comm

!> ???
!> Total number of mpi tasks for the forecast grid components
integer :: fcst_ntasks


!> ???
!> ID number for the coupled grids
integer :: cpl_grid_id

!> ???
!> Flag to decide if model writes out coupled diagnostic fields
logical :: cplprint_flag

!> ???
!> Flag to decide if write grid components is used
logical :: quilting

!> ???
!> Flag to decide if write grid component writes out restart files
logical :: quilting_restart


!> ???
!> Output frequency if this array has only two elements and the value of
!! the second eletment is -1. Otherwise, it is the specific output forecast
!! hours
real,dimension(:),allocatable :: output_fh

!> ???
character(esmf_maxstr),dimension(:),allocatable :: filename_base

!> ???
!> Calendar type
character(17) :: calendar=' '

end module module_fv3_config
Loading