OOPS
variables.F90
Go to the documentation of this file.
1 !
2 ! (C) Copyright 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 !
7 
8 !> Test interface for oops variables
9 
11 
12 use fckit_configuration_module, only: fckit_configuration
13 use, intrinsic :: iso_c_binding
14 use kinds
16 use fckit_log_module, only : fckit_log
17 
18 implicit none
19 private
20 
21 integer, parameter :: var_length = 10
22 integer, parameter :: max_string = 800
23 
24 !-------------------------------------------------------------------------------
25 contains
26 !-------------------------------------------------------------------------------
27 !> Test uniform real distribution
28 !
29 subroutine c_test_vars_interface(c_conf, c_vars) bind(c,name='test_vars_interface_f')
30 implicit none
31 
32 type(c_ptr), intent(in), value :: c_conf
33 type(c_ptr), intent(in), value :: c_vars
34 
35 character(len=*), parameter :: myname_="test_vars_interface"
36 type(fckit_configuration) :: f_conf
37 type(oops_variables) vars
38 character(len=:), allocatable :: test_vars(:), varlist(:)
39 character(var_length) :: varname
40 character(max_string) :: err_msg
41 integer :: jvar
42 
43 f_conf = fckit_configuration(c_conf)
44 vars = oops_variables(c_vars)
45 
46 ! Get variable list from config file and push to C++
47 call f_conf%get_or_die("test variables",test_vars)
48 call vars%push_back(test_vars)
49 
50 ! add another variable to check single name interface
51 varname = "newvar"
52 call vars%push_back(varname)
53 
54 ! check varlist method
55 varlist = vars%varlist()
56 
57 do jvar = 1, size(test_vars)
58  if (trim(test_vars(jvar)) /= trim(varlist(jvar))) then
59  write(err_msg,*) myname_ // " varlist incorrect: ", jvar, &
60  & trim(test_vars(jvar)) // " /= " // trim(varlist(jvar))
61  call abor1_ftn(err_msg)
62  endif
63 enddo
64 
65 jvar = size(varlist)
66 if (trim(varname) /= trim(varlist(jvar))) then
67  write(err_msg,*) myname_ // " varlist incorrect: ", jvar, &
68  & trim(varname) // " /= " // trim(varlist(jvar))
69  call abor1_ftn(err_msg)
70 endif
71 
72 end subroutine c_test_vars_interface
73 
74 end module test_oops_variables
Fortran interface to Variables.
Test interface for oops variables.
Definition: variables.F90:10
integer, parameter var_length
Definition: variables.F90:21
subroutine c_test_vars_interface(c_conf, c_vars)
Test uniform real distribution.
Definition: variables.F90:30
integer, parameter max_string
Definition: variables.F90:22