EMPIRE DA  v1.9.1
Data assimilation codes using EMPIRE communication
 All Classes Files Functions Variables Pages
phalf.f90
Go to the documentation of this file.
1 
11 subroutine phalf(nrhs,x,Px)
12  use sizes
13  use qdata
14  implicit none
15  integer, parameter :: rk=kind(1.0d+0)
16  integer, intent(in) :: nrhs
17  real(kind=rk), dimension(state_dim,nrhs), intent(in) :: x
19  real(kind=rk), dimension(state_dim,nrhs), intent(out) :: px
21 
22 
23  call phalf_etkf(nrhs,x,px)
24 end subroutine phalf
subroutine phalf(nrhs, x, Px)
subroutine to take a full state vector x and return in state space.
Definition: phalf.f90:11
Module that stores the dimension of observation and state spaces.
Definition: sizes.f90:29
subroutine phalf_etkf(nrhs, x, px)
Subroutine to go from N(0,Q) to N(0,P)
Definition: phalf_etkf.f90:30
Module as a place to store user specified data for .
Definition: Qdata.f90:31