14 use fckit_configuration_module,
only: fckit_configuration
18 use kinds,
only: kind_real
23 use ufo_geovals_mod_c,
only: ufo_geovals_registry
42 bind(c,name=
'mpas_lineargetvalues_create_f90')
44 integer(c_int),
intent(inout) :: c_key_self
45 integer(c_int),
intent(in) :: c_key_geom
46 type(c_ptr),
value,
intent(in) :: c_locs
47 type(c_ptr),
value,
intent(in) :: c_conf
51 type(ufo_locations) :: locs
52 type(fckit_configuration) :: f_conf
61 locs = ufo_locations(c_locs)
62 f_conf = fckit_configuration(c_conf)
65 call self%create(geom, locs, f_conf)
72 bind(c,name=
'mpas_lineargetvalues_delete_f90')
74 integer(c_int),
intent(inout) :: c_key_self
92 c_t2, c_locs, c_key_geovals) &
93 bind(c,name=
'mpas_lineargetvalues_set_trajectory_f90')
95 integer(c_int),
intent(in) :: c_key_self
96 integer(c_int),
intent(in) :: c_key_geom
97 integer(c_int),
intent(in) :: c_key_state
98 type(c_ptr),
value,
intent(in) :: c_t1
99 type(c_ptr),
value,
intent(in) :: c_t2
100 type(c_ptr),
value,
intent(in) :: c_locs
101 integer(c_int),
intent(in) :: c_key_geovals
108 type(ufo_locations) :: locs
109 type(ufo_geovals),
pointer :: geovals
115 call c_f_datetime(c_t1, t1)
116 call c_f_datetime(c_t2, t2)
117 locs = ufo_locations(c_locs)
118 call ufo_geovals_registry%get(c_key_geovals, geovals)
121 call self%set_trajectory(geom, fields, t1, t2, locs, geovals)
129 c_t2, c_locs, c_key_geovals) &
130 bind(c,name=
'mpas_lineargetvalues_fill_geovals_tl_f90')
132 integer(c_int),
intent(in) :: c_key_self
133 integer(c_int),
intent(in) :: c_key_geom
134 integer(c_int),
intent(in) :: c_key_inc
135 type(c_ptr),
value,
intent(in) :: c_t1
136 type(c_ptr),
value,
intent(in) :: c_t2
137 type(c_ptr),
value,
intent(in) :: c_locs
138 integer(c_int),
intent(in) :: c_key_geovals
145 type(ufo_locations) :: locs
146 type(ufo_geovals),
pointer :: geovals
152 call c_f_datetime(c_t1, t1)
153 call c_f_datetime(c_t2, t2)
154 locs = ufo_locations(c_locs)
155 call ufo_geovals_registry%get(c_key_geovals, geovals)
158 call self%fill_geovals_tl(geom, fields, t1, t2, locs, geovals)
165 c_t2, c_locs, c_key_geovals) &
166 bind(c,name=
'mpas_lineargetvalues_fill_geovals_ad_f90')
168 integer(c_int),
intent(in) :: c_key_self
169 integer(c_int),
intent(in) :: c_key_geom
170 integer(c_int),
intent(in) :: c_key_inc
171 type(c_ptr),
value,
intent(in) :: c_t1
172 type(c_ptr),
value,
intent(in) :: c_t2
173 type(c_ptr),
value,
intent(in) :: c_locs
174 integer(c_int),
intent(in) :: c_key_geovals
181 type(ufo_locations) :: locs
182 type(ufo_geovals),
pointer :: geovals
188 call c_f_datetime(c_t1, t1)
189 call c_f_datetime(c_t2, t2)
190 locs = ufo_locations(c_locs)
191 call ufo_geovals_registry%get(c_key_geovals, geovals)
194 call self%fill_geovals_ad(geom, fields, t1, t2, locs, geovals)
type(registry_t), public mpas_fields_registry
Linked list interface - defines registry_t type.
type(registry_t), public mpas_geom_registry
Linked list interface - defines registry_t type.
subroutine mpas_lineargetvalues_set_trajectory_c(c_key_self, c_key_geom, c_key_state, c_t1, c_t2, c_locs, c_key_geovals)
subroutine mpas_lineargetvalues_create_c(c_key_self, c_key_geom, c_locs, c_conf)
subroutine mpas_lineargetvalues_fill_geovals_tl_c(c_key_self, c_key_geom, c_key_inc, c_t1, c_t2, c_locs, c_key_geovals)
subroutine mpas_lineargetvalues_fill_geovals_ad_c(c_key_self, c_key_geom, c_key_inc, c_t1, c_t2, c_locs, c_key_geovals)
subroutine mpas_lineargetvalues_delete_c(c_key_self)
type(registry_t), public mpas_lineargetvalues_registry
Linked list interface - defines registry_t type.
Fortran derived type to hold MPAS field.
Fortran derived type to hold geometry definition.