Run MPAS dynamical core to integrate the dynamical states with time. (KCW, 2024-07-11)
Type | Visibility | Attributes | Name | Initial | |||
---|---|---|---|---|---|---|---|
character(len=*), | private, | parameter | :: | subname | = | 'dyn_comp::dyn_run' |
subroutine dyn_run() ! Module(s) from CAM-SIMA. use cam_logfile, only: debugout_debug, debugout_info character(*), parameter :: subname = 'dyn_comp::dyn_run' call dyn_debug_print(debugout_debug, subname // ' entered') call dyn_debug_print(debugout_info, 'Running MPAS dynamical core') ! MPAS dynamical core will run until the coupling time interval is reached. call mpas_dynamical_core % run() call dyn_debug_print(debugout_debug, subname // ' completed') end subroutine dyn_run