OOPS
gletkf_interface.f90
Go to the documentation of this file.
1 !
2 ! (C) Copyright 2019-2020 UCAR
3 !
4 ! This software is licensed under the terms of the Apache Licence Version 2.0
5 ! which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6 
8 
9  use iso_c_binding
10  use letkf
11  implicit none
12 
13  private
14 
15 contains
16  !------------------------------------------------------------------------------
17  !>
18  subroutine letkf_core_c(nobsl, chxens, chxens_orig, cdep,&
19  cwts_ensmean, cwts_ensperts,&
20  crdiaginv_loc, nanals, neigv,&
21  getkf_inflation, denkf, getkf) &
22  bind(c, name='letkf_core_f90')
23  ! Passed variables
24  integer(c_int) :: nobsl, nanals, neigv
25  integer(c_int) :: getkf_inflation, denkf, getkf
26  real(c_float) :: chxens(nanals,nobsl), chxens_orig(nanals,nobsl), &
27  cdep(nobsl), cwts_ensmean(nanals), &
28  cwts_ensperts(nanals,nanals), crdiaginv_loc(nobsl)
29 
30  ! getkf_inflation, denkf, getkf
31  ! are passed as integer but cast to logical here
32  call letkf_core(nobsl,chxens,chxens_orig,cdep,&
33  cwts_ensmean,cwts_ensperts,&
34  crdiaginv_loc,nanals,neigv,&
35  getkf_inflation==1,denkf==1,getkf==1)
36 
37  end subroutine letkf_core_c
38 end module gletkf_interface
39 
subroutine letkf_core_c(nobsl, chxens, chxens_orig, cdep, cwts_ensmean, cwts_ensperts, crdiaginv_loc, nanals, neigv, getkf_inflation, denkf, getkf)
subroutine letkf_core(nobsl, hxens, hxens_orig, dep, wts_ensmean, wts_ensperts, rdiaginv_loc, nanals, neigv, getkf_inflation, denkf, getkf)
Definition: gletkf_mod.f90:35