IODA
obsspace.F90
Go to the documentation of this file.
1 !
2 ! (C) Copyright 2019 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 !
7 !> Test interface for C++ ObsSpace called from Fortran
8 
9 #include <fckit/fctest.h>
10 
11 !> \cond
12 testsuite(obsspace_fortran)
13 
14 testsuite_init
15  use fckit_module
16  use liboops_mod
17 
18  call liboops_initialise()
19  call fckit_main%init()
20 end_testsuite_init
21 
22 testsuite_finalize
23  use fckit_module
24  use liboops_mod
25 
26  call fckit_main%final()
27  call liboops_finalise()
28 end_testsuite_finalize
29 
30 !> Test obsspace_construct
31 test(test_obsspace_construct)
32  use fckit_configuration_module
33  use fckit_pathname_module, only : fckit_pathname
34  use fckit_module
35  use datetime_mod
36  use obsspace_mod
37  use oops_variables_mod
38  use, intrinsic :: iso_c_binding
39  implicit none
40 
41  character(len=:), allocatable :: filename
42  type(fckit_configuration) :: config
43  type(fckit_configuration), allocatable :: obsconfigs(:)
44  type(fckit_configuration) :: obsconfig
45  type(fckit_configuration) :: testconfig
46 
47  character(kind=c_char,len=:), allocatable :: winbgnstr
48  character(kind=c_char,len=:), allocatable :: winendstr
49  type(datetime) :: winbgn, winend
50 
51  type(c_ptr), allocatable, dimension(:) :: obsspace
52  integer :: nlocs, nlocs_ref, nlocs_id
53  integer :: nvars, nvars_ref
54  integer :: iobstype
55  character(len=100) :: obsname
56  character(kind=c_char,len=:), allocatable :: obsname_ref
57  type(oops_variables) :: vars
58 
59  !> initialize winbgn, winend, get config
60  call fckit_resource("--config", "", filename)
61  config = fckit_yamlconfiguration(fckit_pathname(filename))
62 
63  call config%get_or_die("window begin", winbgnstr)
64  call config%get_or_die("window end", winendstr)
65 
66  call datetime_create(winbgnstr, winbgn)
67  call datetime_create(winendstr, winend)
68 
69  !> allocate all ObsSpaces
70  call config%get_or_die("observations", obsconfigs)
71  allocate(obsspace(size(obsconfigs)))
72  do iobstype = 1, size(obsconfigs)
73  !> get the obs space and test data config pair for this ObsSpace
74  call obsconfigs(iobstype)%get_or_die("obs space", obsconfig)
75  call obsconfigs(iobstype)%get_or_die("test data", testconfig)
76 
77  !> construct obsspace
78  obsspace(iobstype) = obsspace_construct(obsconfig, winbgn, winend)
79  call obsspace_obsname(obsspace(iobstype), obsname)
80 
81  !> test if obsname is the same as reference
82  call obsconfig%get_or_die("name", obsname_ref)
83  check_equal(obsname, obsname_ref)
84 
85  !> test if nlocs and nvars are the same as reference
86  nlocs_id = obsspace_get_dim_id(obsspace(iobstype), "nlocs")
87  nlocs = obsspace_get_dim_size(obsspace(iobstype), nlocs_id)
88  nvars = obsspace_get_nvars(obsspace(iobstype))
89  call testconfig%get_or_die("nlocs", nlocs_ref)
90  call testconfig%get_or_die("nvars", nvars_ref)
91  check_equal(nlocs, nlocs_ref)
92  check_equal(nvars, nvars_ref)
93 
94  !> test if obsvariables nvars is the same
95  vars = obsspace_obsvariables(obsspace(iobstype))
96  call testconfig%get_or_die("nvars obsvars", nvars_ref)
97  check_equal(vars%nvars(), nvars_ref)
98  enddo
99 
100  !> destruct all obsspaces
101  do iobstype = 1, size(obsspace)
102  call obsspace_destruct(obsspace(iobstype))
103  enddo
104  deallocate(obsspace, obsname_ref)
105 
106 end_test
107 
108 end_testsuite
109 !> \endcond
void check_equal(const std::string &name, const std::vector< T > &vals, const std::vector< T > &ref)
Fortran interface to ObsSpace.
Definition: obsspace_mod.F90:9
type(oops_variables) function, public obsspace_obsvariables(obss)
Get obsvariables from ObsSpace.
subroutine, public obsspace_obsname(obss, obsname)
Get obsname from ObsSpace.
integer function, public obsspace_get_dim_id(obss, dim_name)
Return the ObsSpace dimension id given the dimension name.
integer function, public obsspace_get_nvars(c_obss)
Return the number of observational variables.
integer function, public obsspace_get_dim_size(obss, dim_id)
Return the size of the ObsSpace dimension given the dimension id.
subroutine, public obsspace_destruct(c_obss)
type(c_ptr) function, public obsspace_construct(c_conf, tbegin, tend)