forked from NCAR/fv3atm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
module_fv3_config.F90
33 lines (30 loc) · 1.02 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
module module_fv3_config
!------------------------------------------------------------------------
!
!*** fv3 configure variablse from model_configure
!
! revision history
! 01/2017 Jun Wang Initial code
!
!------------------------------------------------------------------------
!
use esmf
implicit none
!
integer :: restart_interval
!
integer :: nfhout, nfhout_hf, nsout, dt_atmos
integer :: nfhmax, nfhmax_hf, first_kdt
type(ESMF_Alarm) :: alarm_output_hf, alarm_output
type(ESMF_TimeInterval) :: output_hfmax
type(ESMF_TimeInterval) :: output_interval,output_interval_hf
!
logical :: cpl, cplprint_flag
logical :: quilting, output_1st_tstep_rst
logical :: force_date_from_configure
!
character(esmf_maxstr),dimension(:),allocatable :: filename_base
character(17) :: calendar=' '
integer :: calendar_type = -99
!
end module module_fv3_config