-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.nml
More file actions
94 lines (82 loc) · 2.98 KB
/
setup.nml
File metadata and controls
94 lines (82 loc) · 2.98 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
&setup
! This is an example of NAMELIST/setup/ defined by mksi.x.
! It is also used in Makefile by target 'test:' as a simple test.
! Mondatory parameters: specify the time.
nymd=20181231
nhms= 000000
! Recommended parameters, speicify the input satinfo
! template file and the output satinfo file.
satinfo_tmpl ='satinfo.tmpl' ! template ["satinfo.tmpl"]
satinfo_outf ='satinfo.txt' ! output ["satinfo.txt"]
! Optional parameters, specify the database about the
! satellite-sensor-channel activities.
! dbname='./sidb' ! the database directory ["./sidb"]
! availablechan_tbl = 'available_channels.tbl' ! ["available_channels.tbl"]
! activechan_tbl = 'active_channels.tbl' ! [ "active_channels.tbl"]
! monitorchan_tbl = 'monitor_channels.tbl' ! [ "monitor_channels.tbl"]
! Optional parameter for debugging message control.
!verbose=.true. ! [.false.]
!nowarn =.true. ! [.false.]
! An optional parameter to control the version of the output
! format. If it is turned to .true., the output format will be
! kept the same as the input format.
!samever=.true. ! [.false.]
! Flags for not-used/available/monitor/active SIS with [default] values.
! NOTUSED_FLAG = -9 ! [-9]
!AVAILABLE_FLAG = -1 ! [-1]
! ACTIVE_FLAG = +1 ! [+1]
! MONITOR_FLAG = 0 ! [ 0]
/ ! end namelist/setup/
!!$ The definitions and default values of all variables in NAMELIST/SETUP/
!!$ of main.F90
!
! integer :: nymd = -HUGE(nymd)
! integer :: nhms = -HUGE(nhms)
!
! integer,parameter :: default_NOTUSED = -9
! integer,parameter :: default_AVAILABALE = -1
! integer,parameter :: default_MONITOR = +0
! integer,parameter :: default_ACTIVE = +1
!
! character(len=*),parameter :: default_AVAILABLECHAN = 'available_channels.tbl'
! character(len=*),parameter :: default_ACTIVECHAN = 'active_channels.tbl'
! character(len=*),parameter :: default_MONITORCHAN = 'monitor_channels.tbl'
!
! ! optional parameters. Default values can be used.
! character(len=PATHSIZE) :: satinfo_tmpl = "satinfo.tmpl"
! character(len=PATHSIZE) :: satinfo_outf = "satinfo.txt"
! character(len=PATHSIZE) :: dbname ='./sidb'
! character(len=PATHSIZE) :: availablechan_tbl = default_AVAILABLECHAN
! character(len=PATHSIZE) :: activechan_tbl = default_ACTIVECHAN
! character(len=PATHSIZE) :: monitorChan_tbl = default_MONITORCHAN
!
! logical :: verbose=.false.
! logical :: nowarn =.false.
! logical :: samever=.false.
!
! integer :: NOTUSED_FLAG = default_NOTUSED
! integer :: AVAILABLE_FLAG = default_AVAILABLE
! integer :: ACTIVE_FLAG = default_ACTIVE
! integer :: MONITOR_FLAG = default_MONITOR
!
! integer :: itmpl
! integer :: iver
! integer :: ios
! logical :: warning
!
! namelist/setup/ nymd,nhms, &
! satinfo_tmpl,satinfo_outf, &
! dbname, &
! availablechan_tbl,&
! activechan_tbl, &
! monitorchan_tbl, &
! NOTUSED_FLAG, &
! AVAILABLE_FLAG, &
! ACTIVE_FLAG, &
! MONITOR_FLAG, &
! verbose, &
! samever, &
! nowarn
!
!!$
!!$