MPAS-JEDI
mpas_geom_interface.F90
Go to the documentation of this file.
1 ! (C) Copyright 2017 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 
6 ! ------------------------------------------------------------------------------
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
10 use iso_c_binding
11 use mpas_geom_mod
12 implicit none
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
16 
17 type(mpas_geom), pointer :: self
18 type(fckit_configuration) :: f_conf
19 
20 call mpas_geom_registry%init()
21 call mpas_geom_registry%add(c_key_self)
22 call mpas_geom_registry%get(c_key_self, self)
23 
24 f_conf = fckit_configuration(c_conf)
25 call geo_setup(self, f_conf, fckit_mpi_comm(c_comm))
26 
27 end subroutine c_mpas_geo_setup
28 
29 ! ------------------------------------------------------------------------------
30 
31 subroutine c_mpas_geo_clone(c_key_self, c_key_other) bind(c,name='mpas_geo_clone_f90')
32 use iso_c_binding
33 use mpas_geom_mod
34 implicit none
35 integer(c_int), intent(inout) :: c_key_self
36 integer(c_int), intent(in) :: c_key_other
37 
38 type(mpas_geom), pointer :: self, other
39 
40 call mpas_geom_registry%add(c_key_self)
41 call mpas_geom_registry%get(c_key_self, self)
42 call mpas_geom_registry%get(c_key_other, other)
43 
44 call geo_clone(self, other)
45 
46 end subroutine c_mpas_geo_clone
47 
48 ! ------------------------------------------------------------------------------
49 
50 subroutine c_mpas_geo_delete(c_key_self) bind(c,name='mpas_geo_delete_f90')
51 use iso_c_binding
52 use mpas_geom_mod
53 implicit none
54 integer(c_int), intent(inout) :: c_key_self
55 type(mpas_geom), pointer :: self
56 
57 call mpas_geom_registry%get(c_key_self, self)
58 call geo_delete(self)
59 call mpas_geom_registry%remove(c_key_self)
60 
61 end subroutine c_mpas_geo_delete
62 
63 ! --------------------------------------------------------------------------------------------------
64 
65 subroutine c_mpas_geo_set_atlas_lonlat(c_key_self, c_afieldset) bind(c,name='mpas_geo_set_atlas_lonlat_f90')
66 use atlas_module, only: atlas_fieldset
67 use iso_c_binding
68 use mpas_geom_mod
69 implicit none
70 integer(c_int), intent(in) :: c_key_self
71 type(c_ptr), intent(in), value :: c_afieldset
72 type(mpas_geom), pointer :: self
73 type(atlas_fieldset) :: afieldset
74 
75 call mpas_geom_registry%get(c_key_self, self)
76 afieldset = atlas_fieldset(c_afieldset)
77 
78 call geo_set_atlas_lonlat(self, afieldset)
79 
80 end subroutine c_mpas_geo_set_atlas_lonlat
81 
82 ! --------------------------------------------------------------------------------------------------
83 
84 subroutine c_mpas_geo_set_atlas_functionspace_pointer(c_key_self,c_afunctionspace) &
85  & bind(c,name='mpas_geo_set_atlas_functionspace_pointer_f90')
86 use atlas_module, only: atlas_functionspace_pointcloud
87 use iso_c_binding
88 use mpas_geom_mod
89 implicit none
90 integer(c_int), intent(in) :: c_key_self
91 type(c_ptr), intent(in), value :: c_afunctionspace
92 type(mpas_geom),pointer :: self
93 
94 call mpas_geom_registry%get(c_key_self, self)
95 
96 self%afunctionspace = atlas_functionspace_pointcloud(c_afunctionspace)
97 
99 
100 ! --------------------------------------------------------------------------------------------------
101 
102 subroutine c_mpas_geo_fill_atlas_fieldset(c_key_self, c_afieldset) &
103  & bind(c,name='mpas_geo_fill_atlas_fieldset_f90')
104 use atlas_module, only: atlas_fieldset
105 use iso_c_binding
106 use mpas_geom_mod
107 implicit none
108 integer(c_int), intent(in) :: c_key_self
109 type(c_ptr), value, intent(in) :: c_afieldset
110 type(mpas_geom), pointer :: self
111 type(atlas_fieldset) :: afieldset
112 
113 call mpas_geom_registry%get(c_key_self, self)
114 afieldset = atlas_fieldset(c_afieldset)
115 
116 call geo_fill_atlas_fieldset(self, afieldset)
117 
118 end subroutine c_mpas_geo_fill_atlas_fieldset
119 
120 ! ------------------------------------------------------------------------------
121 
122 subroutine c_mpas_geo_is_equal(c_is_equal, c_key_self, c_key_other) &
123  & bind(c,name='mpas_geo_is_equal_f90')
124 use iso_c_binding
125 use mpas_geom_mod
126 implicit none
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
130 type(mpas_geom), pointer :: self
131 type(mpas_geom), pointer :: other
132 
133 call mpas_geom_registry%get(c_key_self, self)
134 call mpas_geom_registry%get(c_key_other, other)
135 
136 call geo_is_equal(c_is_equal, self, other)
137 
138 end subroutine c_mpas_geo_is_equal
139 
140 ! ------------------------------------------------------------------------------
141 
142 subroutine mpas_geo_vars_nlevels_c(c_key_self, c_vars, c_nvars, c_nlevels) &
143  bind(c,name='mpas_geo_vars_nlevels_f90')
144 use iso_c_binding
146 use oops_variables_mod, only: oops_variables
147 implicit none
148 integer(c_int), intent(in) :: c_key_self !< Geometry
149 type(c_ptr), value, intent(in) :: c_vars !< Variables
150 integer(c_size_t), intent(in) :: c_nvars !< size of Variables
151 integer(c_size_t), intent(inout) :: c_nlevels(c_nvars) !< level counts
152 
153 type(mpas_geom), pointer :: self
154 type(oops_variables) :: vars
155 
156 call mpas_geom_registry%get(c_key_self, self)
157 vars = oops_variables(c_vars)
158 call self%nlevels(vars, c_nvars, c_nlevels)
159 
160 end subroutine mpas_geo_vars_nlevels_c
161 
162 ! ------------------------------------------------------------------------------
163 
164 
165 subroutine c_mpas_geo_info(c_key_self, c_nCellsGlobal, c_nCells, c_nCellsSolve, &
166  c_nEdgesGlobal, c_nEdges, c_nEdgesSolve, &
167  c_nVertLevels, c_nVertLevelsP1) &
168  bind(c,name='mpas_geo_info_f90')
169 use iso_c_binding
170 use mpas_geom_mod
171 implicit none
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
177 
178 type(mpas_geom), pointer :: self
179 
180 call mpas_geom_registry%get(c_key_self, self)
181 call geo_info(self, c_ncellsglobal, c_ncells, c_ncellssolve, &
182  c_nedgesglobal, c_nedges, c_nedgessolve, &
183  c_nvertlevels, c_nvertlevelsp1)
184 
185 
186 end subroutine c_mpas_geo_info
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.