Skip to content

Commit 6f19a0b

Browse files
committed
Clarify the method of initialization
1 parent 80ce263 commit 6f19a0b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/dynamics/mpas/dyn_comp.F90

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -284,14 +284,14 @@ subroutine dyn_init(cam_runtime_opts, dyn_in, dyn_out)
284284

285285
call set_analytic_initial_condition()
286286
else
287-
call dyn_debug_print(debugout_info, 'Initializing MPAS state variables by reading initial condition')
287+
call dyn_debug_print(debugout_info, 'Initializing MPAS state variables by reading initial condition from a file')
288288

289289
! Perform default initialization for all constituents.
290290
! Subsequently, they can be overridden depending on the namelist option (below) and
291291
! the actual availability (checked and handled by MPAS).
292292
call dyn_exchange_constituent_states(direction='e', exchange=.true., conversion=.false.)
293293

294-
! Namelist option that controls if constituents are to be read from the file.
294+
! Namelist option that controls if constituents are to be read from a file.
295295
if (readtrace) then
296296
! Read variables that belong to the "input" stream in MPAS.
297297
call mpas_dynamical_core % read_write_stream(pio_init_file, 'r', 'input')
@@ -303,7 +303,7 @@ subroutine dyn_init(cam_runtime_opts, dyn_in, dyn_out)
303303
else
304304
! Run type is branch or restart run.
305305

306-
call dyn_debug_print(debugout_info, 'Initializing MPAS state variables by restarting')
306+
call dyn_debug_print(debugout_info, 'Initializing MPAS state variables by restarting from a file')
307307

308308
! Read variables that belong to the "input" and "restart" streams in MPAS.
309309
call mpas_dynamical_core % read_write_stream(pio_init_file, 'r', 'input+restart')

0 commit comments

Comments
 (0)