Scheduled Downtime
On Friday 21 April 2023 @ 5pm MT, this website will be down for maintenance and expected to return online the morning of 24 April 2023 at the latest

Some questions about the parameter cong_do_DAcycling

dashline

Member
I read the mpas users guide about the parameter cong_do_DAcycling. It mentions in there that the coupled field is recalculated, but I would like to know exactly what coupled field is calculated. Since I am doing something related to assimilation, I would like to know what variables I need to update, so that the corresponding coupled field will be recalculated when parameter cong_do_DAcycling is opened.
 
The 'config_do_DAcycling' option essentially controls whether the atm_init_coupled_diagnostics routine is called at the beginning of a restart simulation. The logic for this can be found around L.389 of mpas_atm_core.F (in MPAS v7.3).

Within the atm_init_coupled_diagnostics routine -- among other fields -- we compute theta_m, rho_zz, ru, and rw from the uncoupled theta, rho, u, w, and qv fields in the restart file.
 
Top