71
74 time_nowdate, time_nowsubsec, time_nowstep, time_nstep, &
76
77 implicit none
78
79 integer, intent(in) :: comm_world
80 character(len=*), intent(in) :: cnf_fname
81 character(len=*), intent(in) :: path
82 logical, intent(in) :: add_path
83
84 integer :: myrank
85 integer :: fpm_counter
86 logical :: ismaster
87 logical :: sign_exit
88
89
90
91
92
93 if ( add_path .and. path /= "" ) then
94 call io_setup( modelname, trim(path)//cnf_fname, prefix=path )
95 else
96 call io_setup( modelname, trim(path)//cnf_fname )
97 end if
98
99
100 call prc_local_setup( comm_world, &
101 myrank, &
102 ismaster )
103
104
105 call io_log_setup( myrank, ismaster )
106
107 call initialize
108
109
110
111
112
113#ifdef FIPP
114 call fipp_start
115#endif
116
117 log_newline
118 log_progress(*) 'START TIMESTEP'
119 call prof_setprefx('MAIN')
120 call prof_rapstart('Main_Loop', 0)
121
122 do
123
124
125
126
128
130
131 call restart_read
132
133 call file_monitor_meshfield_write('MAIN', time_nowstep)
134 call file_history_meshfield_write
135 end if
136
137
138
140 call file_history_set_nowdate( time_nowdate, time_nowsubsec, time_nowstep )
141
142
143
144
145 call user_%update_pre( atmos )
146
147
148 if ( atmos%IsActivated() .and. atmos%time_manager%do_step ) then
149 call atmos%update()
150 end if
151
152
153 call user_%update( atmos )
154
155
156 if ( atmos%IsActivated() ) call atmos%vars%Monitor()
157 call restart_write
158 call file_monitor_meshfield_write('MAIN', time_nowstep)
159
160
161
162 if ( atmos%IsActivated() ) call atmos%set_surface()
163
164
165
166
167 if ( atmos%IsActivated() .and. atmos%time_manager%do_step ) then
168 call atmos%calc_tendency( force=.false. )
169 end if
170
171
172 call user_%calc_tendency( atmos )
173
174
175
176 if ( atmos%IsActivated() ) call atmos%vars%History()
177 if ( atmos%phy_tb_proc%IsActivated() ) call atmos%phy_tb_proc%vars%History()
178 if ( atmos%phy_mp_proc%IsActivated() ) call atmos%phy_mp_proc%vars%History()
179 if ( atmos%phy_sfc_proc%IsActivated() ) call atmos%phy_sfc_proc%vars%History()
180
181
182 call file_history_meshfield_write
183
184
186
187 if( io_l ) call flush(io_fid_log)
188 end do
189
190 call prof_rapend('Main_Loop', 0)
191
192 log_progress(*) 'END TIMESTEP'
193 log_newline
194
195#ifdef FIPP
196 call fipp_stop
197#endif
198
199
200 call finalize
201
202 return
subroutine, public time_manager_advance()
subroutine, public time_manager_checkstate()
logical, public time_doend
logical, public time_doresume