8 use fckit_configuration_module,
only: fckit_configuration
9 use fckit_log_module,
only: fckit_log
16 use mpas_derived_types
21 use mpas_stream_manager
23 use mpas_constants,
only : rgas, cp
25 use kinds,
only : kind_real
43 type (domain_type),
pointer :: domain
44 type (core_type),
pointer :: corelist
45 real (kind=kind_real) :: dt
51 #define LISTED_TYPE mpas_model
54 #include <oops/util/linkedList_i.f>
64 #include <oops/util/linkedList_c.f>
73 type(fckit_configuration),
intent(in) :: f_conf
78 character(len=:),
allocatable :: str
79 character(len=20) :: ststep
80 type(duration) :: dtstep
82 real (kind=kind_real),
pointer :: config_dt
83 character (len=StrKIND),
pointer :: config_start_time
84 character (len=StrKIND),
pointer :: config_restart_timestamp_name
85 character (len=StrKIND),
pointer :: config_run_duration
86 character (len=StrKIND),
pointer :: config_stop_time
87 character (len=StrKIND) :: starttimestamp
91 call fckit_log%info(
'===> model_setup')
92 #define ModelMPAS_setup
93 #ifdef ModelMPAS_setup
94 self % corelist => geom % corelist
95 self % domain => geom % domain
110 call mpas_pool_get_config(self % domain % blocklist % configs,
'config_dt', config_dt)
111 call mpas_pool_get_config(self % domain % blocklist % configs,
'config_start_time', config_start_time)
112 call mpas_pool_get_config(self % domain % blocklist % configs,
'config_restart_timestamp_name', config_restart_timestamp_name)
113 call mpas_pool_get_config(self % domain % blocklist % configs,
'config_run_duration', config_run_duration)
114 call mpas_pool_get_config(self % domain % blocklist % configs,
'config_stop_time', config_stop_time)
115 write(
message,*)
'config_dt: ',config_dt
117 write(
message,*)
'config_start_time: ',trim(config_start_time)
119 write(
message,*)
'config_restart_timestamp_name: ',trim(config_restart_timestamp_name)
121 write(
message,*)
'config_run_duration: ',trim(config_run_duration)
123 write(
message,*)
'config_stop_time: ',trim(config_stop_time)
128 call f_conf%get_or_die(
"tstep",str)
130 dtstep = trim(ststep)
131 write(
message,*)
'ststep: ', ststep
133 self % dt = config_dt
151 call fckit_log%info(
'===> model_delete')
168 logical,
pointer :: config_do_restart, config_do_dacycling, config_dt
170 real (kind=kind_real),
pointer :: dt
171 type (block_type),
pointer :: block
173 character(len=StrKIND) :: starttimestamp, stoptimestamp, nowtimestamp
175 type (mpas_pool_type),
pointer :: state
176 type (mpas_pool_type),
pointer :: mesh
177 type (mpas_pool_type),
pointer :: diag
178 type (field2dreal),
pointer :: u_field, pv_edge_field, ru_field, rw_field
179 type (field2dreal),
pointer :: ureconstructzonal, ureconstructmeridional
180 character (len=StrKIND),
pointer :: xtime
181 character (len=StrKIND),
pointer :: config_run_duration
182 type (mpas_time_type) :: starttime, stoptime, nowtime
183 type (mpas_timeinterval_type) :: runduration
184 type (mpas_alarm_type),
pointer :: alarmptr
186 call fckit_log%info(
'===> model_prepare_integration')
217 starttime = mpas_get_clock_time(jedi_state % clock, mpas_start_time, ierr)
218 call mpas_set_clock_time(self % domain % clock, starttime, mpas_start_time)
219 call mpas_get_time(starttime, datetimestring=starttimestamp)
220 call mpas_pool_get_config(self % domain % blocklist % configs,
'config_run_duration',config_run_duration)
221 call mpas_set_timeinterval(runduration, timestring=config_run_duration,ierr=ierr)
222 stoptime = starttime + runduration
223 call mpas_set_clock_time(self % domain % clock, stoptime, mpas_stop_time)
224 call mpas_get_time(stoptime, datetimestring=stoptimestamp)
225 write(
message,*)
'MPAS_START_TIME, MPAS_STOP_TIME: ',trim(starttimestamp),trim(stoptimestamp)
228 nowtime = mpas_get_clock_time(jedi_state % clock, mpas_now, ierr)
229 call mpas_get_time(nowtime, datetimestring=nowtimestamp)
230 write(
message,*)
'MPAS_NOW from jedi_state % clock: ',trim(nowtimestamp)
232 nowtime = mpas_get_clock_time(self % domain % clock, mpas_now, ierr)
233 call mpas_get_time(nowtime, datetimestring=nowtimestamp)
234 write(
message,*)
'MPAS_NOW from self % domain % clock: ',trim(nowtimestamp)
237 call mpas_pool_get_array(self % domain % blocklist % allFields,
'xtime', xtime, 1)
238 write(
message,*)
'xtime_old=',xtime
240 xtime = starttimestamp
241 write(
message,*)
'xtime_new=',xtime
249 call mpas_pool_get_config(self % domain % blocklist % configs,
'config_do_restart', config_do_restart)
250 call mpas_pool_get_config(self % domain % blocklist % configs,
'config_do_DAcycling', config_do_dacycling)
251 call mpas_pool_get_config(self % domain % blocklist % configs,
'config_dt', dt)
252 config_do_restart = .true.
253 config_do_dacycling = .true.
270 block => self % domain % blocklist
271 #define ModelMPAS_prepare
272 #ifdef ModelMPAS_prepare
276 clock => self % domain % clock
279 alarmptr => clock % alarmListHead
280 do while (
associated(alarmptr))
281 clock % alarmListHead => alarmptr % next
283 alarmptr => clock % alarmListHead
286 do while (
associated(block))
287 call mpas_pool_get_subpool(block % structs,
'mesh', mesh)
288 call mpas_pool_get_subpool(block % structs,
'state', state)
292 call atm_mpas_init_block(self % domain % dminfo, self % domain % streamManager, block, mesh, self % dt)
293 call mpas_pool_get_array(state,
'xtime', xtime, 1)
294 xtime = starttimestamp
295 block => block % next
298 call mpas_pool_get_subpool(self % domain % blocklist % structs,
'diag', diag)
299 call mpas_pool_get_field(diag,
'pv_edge', pv_edge_field)
300 call mpas_dmpar_exch_halo_field(pv_edge_field)
301 call mpas_pool_get_field(diag,
'ru', ru_field)
302 call mpas_dmpar_exch_halo_field(ru_field)
303 call mpas_pool_get_field(diag,
'rw', rw_field)
304 call mpas_dmpar_exch_halo_field(rw_field)
317 call fckit_log%info (
'===> model_prepare_integration_ad')
329 call fckit_log%info (
'===> model_prepare_integration_tl')
341 type (mpas_pool_type),
pointer :: state, diag, mesh
342 real (kind=kind_real) :: dt
345 call fckit_log%info (
'===> model_propagate')
348 call mpas_pool_get_subpool(self % domain % blocklist % structs,
'state', state)
349 call mpas_pool_get_subpool(self % domain % blocklist % structs,
'diag', diag)
350 call mpas_pool_get_subpool(self % domain % blocklist % structs,
'mesh', mesh)
355 call atm_do_timestep(self % domain, self % dt, itimestep)
356 call mpas_pool_shift_time_levels(state)
357 call mpas_advance_clock(self % domain % clock)
358 call mpas_advance_clock(jedi_state % clock)
365 call atm_compute_output_diagnostics(state, 1, diag, mesh)
380 call fckit_log%info (
'===> model_propagate_ad')
390 call fckit_log%info (
'===> model_propagate_tl')
402 call fckit_log%info (
'===> model_prop_traj in mpas_model_mod.F90')
414 call fckit_log%info (
'===> model_wipe_traj')
character(len=1024) message
subroutine, public da_copy_sub2all_fields(domain, pool_a)
Performs a copy of a sub pool A to allfields.
integer, parameter max_string
subroutine, public update_diagnostic_fields(domain, subFields, ngrid)
subroutine, public model_delete(self)
type(registry_t), public mpas_model_registry
Linked list interface - defines registry_t type.
subroutine, public model_propagate(self, jedi_state)
subroutine, public model_prop_traj(self, jedi_state, traj)
subroutine, public model_setup(self, geom, f_conf)
Linked list implementation.
subroutine, public model_prepare_integration_ad(self, inc)
subroutine, public model_propagate_tl(self, inc, traj)
subroutine, public model_prepare_integration_tl(self, inc)
subroutine, public model_prepare_integration(self, jedi_state)
subroutine, public model_wipe_traj(traj)
subroutine, public model_propagate_ad(self, inc, traj)
subroutine, public set_traj(self, state)
Linked list implementation.
Fortran derived type to hold MPAS field.
Fortran derived type to hold geometry definition.
Fortran derived type to hold model definition.
Fortran derived type to hold the model trajectory.