forked from NOAA-EMC/fv3atm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
module_fv3_config.F90
49 lines (33 loc) · 1.33 KB
/
module_fv3_config.F90
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
!> @file
!> @brief fv3 configure variables from model_configure.
!> @author Jun Wang @date 01/2017
!> @brief fv3 configure variables from model_configure.
!>
!> @author Jun Wang @date 01/2017
module module_fv3_config
use mpi_f08
use esmf
implicit none
!> Atmosphere time step in seconds
integer :: dt_atmos
!> The first integration step
integer :: first_kdt
!> MPI communicator for the forecast grid component
type(MPI_Comm) :: 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
!> Calendar type
character(17) :: calendar=' '
end module module_fv3_config