Changes between Version 7 and Version 8 of ImplementAnalysis_3DVar
- Timestamp:
- Dec 9, 2021, 11:46:02 AM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ImplementAnalysis_3DVar
v7 v8 45 45 The interface for using the parameterized 3D-Var is: 46 46 {{{ 47 SUBROUTINE PDAFomi_assimilate_3dvar( collect_state_pdaf, distribute_state_pdaf, &47 SUBROUTINE PDAFomi_assimilate_3dvar(U_collect_state, U_distribute_state, & 48 48 U_init_dim_obs_pdafomi, U_obs_op_pdafomi, & 49 49 U_cvt, U_cvt_adj, U_obs_op_lin_pdafomi, obs_op_adj_pdafomi, & 50 prepoststep_pdaf, next_observation_pdaf, outflag)50 U_prepoststep, U_next_observation, outflag) 51 51 }}} 52 52 with the following arguments: … … 70 70 The interface when using one of the global filters is the following: 71 71 {{{ 72 SUBROUTINE PDAFomi_assimilate_3dvar( collect_state_pdaf, &72 SUBROUTINE PDAFomi_assimilate_3dvar(U_collect_state, & 73 73 U_init_dim_obs_pdafomi, U_obs_op_pdafomi, & 74 74 U_cvt, U_cvt_adj, U_obs_op_lin_pdafomi, obs_op_adj_pdafomi, & 75 prepoststep_pdaf, outflag)75 U_prepoststep, outflag) 76 76 }}} 77 77