Changes between Version 1 and Version 2 of U_obs_op_adj


Ignore:
Timestamp:
Mar 7, 2025, 1:20:10 PM (7 days ago)
Author:
lnerger
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • U_obs_op_adj

    v1 v2  
    99The interface is the following:
    1010{{{
    11 SUBROUTINE U_obs_op_adj(step, dim_p, dim_obs_p, state_p, m_state_p)
     11SUBROUTINE U_obs_op_adj(step, dim_p, dim_obs_p, m_state_p, state_p)
    1212
    1313  INTEGER, INTENT(in) :: step                 ! Current time step
    1414  INTEGER, INTENT(in) :: dim_p                ! PE-local dimension of state
    1515  INTEGER, INTENT(in) :: dim_obs_p            ! Dimension of observed state
    16   REAL, INTENT(in)    :: m_state_p(dim_obs_p) ! PE-local observed state
    17   REAL, INTENT(out)   :: state_p(dim_p)       ! PE-local model state
     16  REAL, INTENT(in)    :: state_p(dim_p)       ! PE-local model state
     17  REAL, INTENT(out)   :: m_state_p(dim_obs_p) ! PE-local observed state
    1818}}}
    1919