OOPS
qg_getvalues_interface.F90
Go to the documentation of this file.
1 ! (C) Copyright 2020 UCAR
2 !
3 ! This software is licensed under the terms of the Apache Licence Version 2.0
4 ! which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
5 
7 
8 use datetime_mod
9 use iso_c_binding
10 use kinds
11 use qg_fields_mod
13 use qg_geom_mod
14 use qg_gom_mod
15 use qg_locs_mod
16 
17 implicit none
18 
19 private
20 ! ------------------------------------------------------------------------------
21 contains
22 ! ------------------------------------------------------------------------------
23 !> Interpolation from fields
24 subroutine qg_getvalues_interp_c(c_locs,c_key_fld,c_t1,c_t2,c_key_gom) bind(c,name='qg_getvalues_interp_f90')
25 
26 implicit none
27 
28 ! Passed variables
29 type(c_ptr),value,intent(in) :: c_locs !< locations
30 integer(c_int),intent(in) :: c_key_fld !< Fields
31 type(c_ptr),value,intent(in) :: c_t1, c_t2 !< times
32 integer(c_int),intent(in) :: c_key_gom !< Interpolated values
33 
34 ! Local variables
35 type(qg_locs) :: locs
36 type(qg_fields),pointer :: fld
37 type(qg_gom), pointer :: gom
38 type(datetime) :: t1, t2
39 
40 ! Interface
41 locs = qg_locs(c_locs)
42 call qg_fields_registry%get(c_key_fld,fld)
43 call qg_gom_registry%get(c_key_gom,gom)
44 call c_f_datetime(c_t1, t1)
45 call c_f_datetime(c_t2, t2)
46 ! Call Fortran
47 call qg_getvalues_interp(locs,fld,t1,t2,gom)
48 
49 end subroutine qg_getvalues_interp_c
50 ! ------------------------------------------------------------------------------
51 !> Interpolation from fields, tangent linear
52 subroutine qg_getvalues_interp_tl_c(c_locs, c_key_fld,c_t1,c_t2,c_key_gom) bind(c,name='qg_getvalues_interp_tl_f90')
53 
54 implicit none
55 
56 ! Passed variables
57 type(c_ptr),value,intent(in) :: c_locs !< Locations
58 integer(c_int),intent(in) :: c_key_fld !< Fields
59 type(c_ptr),value,intent(in) :: c_t1, c_t2 !< times
60 integer(c_int),intent(in) :: c_key_gom !< Interpolated values
61 
62 ! Local variables
63 type(qg_locs) :: locs
64 type(qg_fields),pointer :: fld
65 type(datetime) :: t1, t2
66 type(qg_gom), pointer :: gom
67 
68 ! Interface
69 locs = qg_locs(c_locs)
70 call qg_fields_registry%get(c_key_fld,fld)
71 call c_f_datetime(c_t1, t1)
72 call c_f_datetime(c_t2, t2)
73 call qg_gom_registry%get(c_key_gom,gom)
74 
75 ! Call Fortran
76 call qg_getvalues_interp_tl(locs,fld,t1,t2,gom)
77 
78 end subroutine qg_getvalues_interp_tl_c
79 ! ------------------------------------------------------------------------------
80 !> Interpolation from fields, adjoint
81 subroutine qg_getvalues_interp_ad_c(c_locs,c_key_fld,c_t1,c_t2,c_key_gom) bind(c,name='qg_getvalues_interp_ad_f90')
82 
83 implicit none
84 
85 ! Passed variables
86 type(c_ptr),value,intent(in) :: c_locs !< locations
87 integer(c_int),intent(in) :: c_key_fld !< Fields
88 type(c_ptr),value,intent(in) :: c_t1, c_t2 !< times
89 integer(c_int),intent(in) :: c_key_gom !< Interpolated values
90 
91 ! Local variables
92 type(qg_locs) :: locs
93 type(qg_fields),pointer :: fld
94 type(datetime) :: t1, t2
95 type(qg_gom), pointer :: gom
96 
97 ! Interface
98 locs = qg_locs(c_locs)
99 call qg_fields_registry%get(c_key_fld,fld)
100 call qg_gom_registry%get(c_key_gom,gom)
101 call c_f_datetime(c_t1, t1)
102 call c_f_datetime(c_t2, t2)
103 
104 ! Call Fortran
105 call qg_getvalues_interp_ad(locs,fld,t1,t2,gom)
106 
107 end subroutine qg_getvalues_interp_ad_c
108 ! ------------------------------------------------------------------------------
109 end module qg_getvalues_interface
type(registry_t), public qg_fields_registry
Linked list interface - defines registry_t type.
subroutine qg_getvalues_interp_c(c_locs, c_key_fld, c_t1, c_t2, c_key_gom)
Interpolation from fields.
subroutine qg_getvalues_interp_tl_c(c_locs, c_key_fld, c_t1, c_t2, c_key_gom)
Interpolation from fields, tangent linear.
subroutine qg_getvalues_interp_ad_c(c_locs, c_key_fld, c_t1, c_t2, c_key_gom)
Interpolation from fields, adjoint.
subroutine, public qg_getvalues_interp_tl(locs, fld, t1, t2, gom)
Interpolation from fields - tangent linear.
subroutine, public qg_getvalues_interp(locs, fld, t1, t2, gom)
Interpolation from fields.
subroutine, public qg_getvalues_interp_ad(locs, fld, t1, t2, gom)
Interpolation from fields - adjoint.
type(registry_t), public qg_gom_registry
Linked list interface - defines registry_t type.
Definition: qg_gom_mod.F90:49