11 use atlas_module,
only: atlas_fieldset, atlas_functionspace_pointcloud
12 use fckit_configuration_module,
only: fckit_configuration
13 use fckit_log_module,
only: fckit_log
29 integer(c_int),
intent(inout) :: c_key_self
30 type(c_ptr),
value,
intent(in) :: c_conf
33 type(fckit_configuration) :: f_conf
37 f_conf = fckit_configuration(c_conf)
51 integer(c_int),
intent(in) :: c_key_self
52 type(c_ptr),
intent(in),
value :: c_afieldset
56 type(atlas_fieldset) :: afieldset
60 afieldset = atlas_fieldset(c_afieldset)
69 & bind(c,name=
'qg_geom_set_atlas_functionspace_pointer_f90')
72 integer(c_int),
intent(in) :: c_key_self
73 type(c_ptr),
intent(in),
value :: c_afunctionspace
80 self%afunctionspace = atlas_functionspace_pointcloud(c_afunctionspace)
86 & bind(c,name=
'qg_geom_fill_atlas_fieldset_f90')
89 integer(c_int),
intent(in) :: c_key_self
90 type(c_ptr),
intent(in),
value :: c_afieldset
94 type(atlas_fieldset) :: afieldset
98 afieldset = atlas_fieldset(c_afieldset)
109 integer(c_int),
intent(inout) :: c_key_self
110 integer(c_int),
intent(in) :: c_key_other
113 type(
qg_geom),
pointer :: self,other
130 integer(c_int),
intent(inout) :: c_key_self
147 subroutine qg_geom_info_c(c_key_self,c_nx,c_ny,c_nz,c_deltax,c_deltay) bind(c,name='qg_geom_info_f90')
150 integer(c_int),
intent(in) :: c_key_self
151 integer(c_int),
intent(inout) :: c_nx
152 integer(c_int),
intent(inout) :: c_ny
153 integer(c_int),
intent(inout) :: c_nz
154 real(c_double),
intent(inout) :: c_deltax
155 real(c_double),
intent(inout) :: c_deltay
164 call qg_geom_info(self,c_nx,c_ny,c_nz,c_deltax,c_deltay)
175 real(c_double),
intent(inout) :: lonmin
176 real(c_double),
intent(inout) :: lonmax
177 real(c_double),
intent(inout) :: latmin
178 real(c_double),
intent(inout) :: latmax
179 real(c_double),
intent(inout) :: zmax
181 call xy_to_lonlat(0.0_kind_real, 0.0_kind_real, lonmin, latmin)
real(kind_real), parameter, public domain_depth
Model depth (m)
real(kind_real), parameter, public domain_meridional
Model domain in meridional direction (m)
real(kind_real), parameter, public domain_zonal
Model domain in zonal direction (m)
subroutine qg_geom_delete_c(c_key_self)
Delete geometry.
subroutine qg_geom_info_c(c_key_self, c_nx, c_ny, c_nz, c_deltax, c_deltay)
Get geometry info.
subroutine qg_geom_dimensions_c(lonmin, lonmax, latmin, latmax, zmax)
Get dimensions of computational domain.
subroutine qg_geom_set_atlas_functionspace_pointer_c(c_key_self, c_afunctionspace)
Set ATLAS function space pointer.
subroutine qg_geom_setup_c(c_key_self, c_conf)
Setup geometry.
subroutine qg_geom_clone_c(c_key_self, c_key_other)
Clone geometry.
subroutine qg_geom_fill_atlas_fieldset_c(c_key_self, c_afieldset)
Fill ATLAS fieldset.
subroutine qg_geom_set_atlas_lonlat_c(c_key_self, c_afieldset)
Set ATLAS lon/lat field.
type(registry_t), public qg_geom_registry
Linked list interface - defines registry_t type.
subroutine, public qg_geom_clone(self, other)
Clone geometry.
subroutine, public qg_geom_delete(self)
Delete geometry.
subroutine, public qg_geom_setup(self, f_conf)
Linked list implementation.
subroutine, public qg_geom_fill_atlas_fieldset(self, afieldset)
Fill ATLAS fieldset.
subroutine, public qg_geom_set_atlas_lonlat(self, afieldset)
Set ATLAS lon/lat field.
subroutine, public qg_geom_info(self, nx, ny, nz, deltax, deltay)
Get geometry info.
subroutine, public xy_to_lonlat(x, y, lon, lat, mapfac)
Convert x/y to lon/lat.