7 subroutine c_mpas_geo_setup(c_key_self, c_conf, c_comm) bind(c,name='mpas_geo_setup_f90')
8 use fckit_configuration_module,
only: fckit_configuration
9 use fckit_mpi_module,
only: fckit_mpi_comm
13 integer(c_int),
intent(inout) :: c_key_self
14 type(c_ptr),
value,
intent(in) :: c_conf
15 type(c_ptr),
value,
intent(in) :: c_comm
18 type(fckit_configuration) :: f_conf
24 f_conf = fckit_configuration(c_conf)
25 call geo_setup(self, f_conf, fckit_mpi_comm(c_comm))
35 integer(c_int),
intent(inout) :: c_key_self
36 integer(c_int),
intent(in) :: c_key_other
54 integer(c_int),
intent(inout) :: c_key_self
66 use atlas_module,
only: atlas_fieldset
70 integer(c_int),
intent(in) :: c_key_self
71 type(c_ptr),
intent(in),
value :: c_afieldset
73 type(atlas_fieldset) :: afieldset
76 afieldset = atlas_fieldset(c_afieldset)
85 & bind(c,name=
'mpas_geo_set_atlas_functionspace_pointer_f90')
86 use atlas_module,
only: atlas_functionspace_pointcloud
90 integer(c_int),
intent(in) :: c_key_self
91 type(c_ptr),
intent(in),
value :: c_afunctionspace
96 self%afunctionspace = atlas_functionspace_pointcloud(c_afunctionspace)
103 & bind(c,name=
'mpas_geo_fill_atlas_fieldset_f90')
104 use atlas_module,
only: atlas_fieldset
108 integer(c_int),
intent(in) :: c_key_self
109 type(c_ptr),
value,
intent(in) :: c_afieldset
111 type(atlas_fieldset) :: afieldset
114 afieldset = atlas_fieldset(c_afieldset)
123 & bind(c,name=
'mpas_geo_is_equal_f90')
127 logical(c_bool),
intent(inout) :: c_is_equal
128 integer(c_int),
intent(in) :: c_key_self
129 integer(c_int),
intent(in) :: c_key_other
143 bind(c,name=
'mpas_geo_vars_nlevels_f90')
146 use oops_variables_mod,
only: oops_variables
148 integer(c_int),
intent(in) :: c_key_self
149 type(c_ptr),
value,
intent(in) :: c_vars
150 integer(c_size_t),
intent(in) :: c_nvars
151 integer(c_size_t),
intent(inout) :: c_nlevels(c_nvars)
154 type(oops_variables) :: vars
157 vars = oops_variables(c_vars)
158 call self%nlevels(vars, c_nvars, c_nlevels)
166 c_nEdgesGlobal, c_nEdges, c_nEdgesSolve, &
167 c_nVertLevels, c_nVertLevelsP1) &
168 bind(c,name=
'mpas_geo_info_f90')
172 integer(c_int),
intent(in) :: c_key_self
173 integer(c_int),
intent(inout) :: &
174 c_nCellsGlobal, c_nCells, c_nCellsSolve, &
175 c_nEdgesGlobal, c_nEdges, c_nEdgesSolve, &
176 c_nVertLevels, c_nVertLevelsP1
181 call geo_info(self, c_ncellsglobal, c_ncells, c_ncellssolve, &
182 c_nedgesglobal, c_nedges, c_nedgessolve, &
183 c_nvertlevels, c_nvertlevelsp1)
subroutine c_mpas_geo_setup(c_key_self, c_conf, c_comm)
subroutine c_mpas_geo_set_atlas_lonlat(c_key_self, c_afieldset)
subroutine mpas_geo_vars_nlevels_c(c_key_self, c_vars, c_nvars, c_nlevels)
subroutine c_mpas_geo_clone(c_key_self, c_key_other)
subroutine c_mpas_geo_info(c_key_self, c_nCellsGlobal, c_nCells, c_nCellsSolve, c_nEdgesGlobal, c_nEdges, c_nEdgesSolve, c_nVertLevels, c_nVertLevelsP1)
subroutine c_mpas_geo_fill_atlas_fieldset(c_key_self, c_afieldset)
subroutine c_mpas_geo_delete(c_key_self)
subroutine c_mpas_geo_is_equal(c_is_equal, c_key_self, c_key_other)
subroutine c_mpas_geo_set_atlas_functionspace_pointer(c_key_self, c_afunctionspace)
subroutine, public geo_clone(self, other)
subroutine, public geo_delete(self)
subroutine, public geo_info(self, nCellsGlobal, nCells, nCellsSolve, nEdgesGlobal, nEdges, nEdgesSolve, nVertLevels, nVertLevelsP1)
type(registry_t), public mpas_geom_registry
Linked list interface - defines registry_t type.
subroutine, public geo_set_atlas_lonlat(self, afieldset)
subroutine, public geo_is_equal(is_equal, self, other)
subroutine, public geo_setup(self, f_conf, f_comm)
Linked list implementation.
subroutine, public geo_fill_atlas_fieldset(self, afieldset)
Fortran derived type to hold geometry definition.