10 use fckit_configuration_module,
only: fckit_configuration
15 use kinds,
only: kind_real
16 use oops_variables_mod
19 use ufo_vars_mod,
only: ufo_vars_getindex
22 use mpas_kind_types,
only: strkind
23 use mpas_pool_routines,
only: mpas_pool_get_config
41 bind(c,name=
'mpas_state_create_f90')
43 integer(c_int),
intent(inout) :: c_key_self
44 integer(c_int),
intent(in) :: c_key_geom
45 type(c_ptr),
value,
intent(in) :: c_state_vars
46 type(c_ptr),
value,
intent(in) :: c_inc_vars
50 type(oops_variables) :: state_vars
51 type(oops_variables) :: inc_vars
52 character(len=StrKIND),
pointer :: config_microp_scheme, &
53 config_radt_cld_scheme
54 logical,
pointer :: config_microp_re
62 state_vars = oops_variables(c_state_vars)
63 inc_vars = oops_variables(c_inc_vars)
65 call mpas_pool_get_config(geom % domain % blocklist % configs,
'config_microp_re', config_microp_re)
66 call mpas_pool_get_config(geom % domain % blocklist % configs,
'config_microp_scheme', config_microp_scheme)
67 call mpas_pool_get_config(geom % domain % blocklist % configs,
'config_radt_cld_scheme', config_radt_cld_scheme)
70 if (config_microp_re)
then
71 do ivar = 1, state_vars % nvars()
74 state_vars%variable(ivar) ) > 0 )
then
85 if (trim(config_microp_scheme) ==
'mp_thompson')
then
86 do ivar = 1, state_vars % nvars()
88 if ( trim(state_vars%variable(ivar)) ==
'qr' )
then
89 call state_vars%push_back(
"nr")
95 call self%create(geom, state_vars, inc_vars)
102 bind(c,name=
'mpas_state_delete_f90')
104 integer(c_int),
intent(inout) :: c_key_self
118 bind(c,name=
'mpas_state_zero_f90')
120 integer(c_int),
intent(in) :: c_key_self
131 bind(c,name=
'mpas_state_copy_f90')
133 integer(c_int),
intent(in) :: c_key_self
134 integer(c_int),
intent(in) :: c_key_rhs
148 bind(c,name=
'mpas_state_axpy_f90')
150 integer(c_int),
intent(in) :: c_key_self
151 real(c_double),
intent(in) :: c_zz
152 integer(c_int),
intent(in) :: c_key_rhs
156 real(kind=kind_real) :: zz
162 call self%axpy(zz,rhs)
169 bind(c,name=
'mpas_state_add_incr_f90')
171 integer(c_int),
intent(in) :: c_key_self
172 integer(c_int),
intent(in) :: c_key_rhs
186 bind(c,name=
'mpas_state_change_resol_f90')
188 integer(c_int),
intent(in) :: c_key_state
189 integer(c_int),
intent(in) :: c_key_rhs
195 call state%change_resol(rhs)
202 bind(c,name=
'mpas_state_read_file_f90')
204 integer(c_int),
intent(in) :: c_key_state
205 type(c_ptr),
value,
intent(in) :: c_conf
206 type(c_ptr),
value,
intent(in) :: c_dt
209 type(datetime) :: fdate
210 type(fckit_configuration) :: f_conf
213 call c_f_datetime(c_dt, fdate)
214 f_conf = fckit_configuration(c_conf)
215 call self%read_file(f_conf, fdate)
222 bind(c,name=
'mpas_state_analytic_init_f90')
224 integer(c_int),
intent(in) :: c_key_state
225 integer(c_int),
intent(in) :: c_key_geom
226 type(c_ptr),
value,
intent(in) :: c_conf
227 type(c_ptr),
value,
intent(in) :: c_dt
231 type(datetime) :: fdate
232 type(fckit_configuration) :: f_conf
236 call c_f_datetime(c_dt, fdate)
237 f_conf = fckit_configuration(c_conf)
245 bind(c,name=
'mpas_state_write_file_f90')
247 integer(c_int),
intent(in) :: c_key_state
248 type(c_ptr),
value,
intent(in) :: c_conf
249 type(c_ptr),
value,
intent(in) :: c_dt
252 type(datetime) :: fdate
253 type(fckit_configuration) :: f_conf
256 call c_f_datetime(c_dt, fdate)
257 f_conf = fckit_configuration(c_conf)
258 call self%write_file( f_conf, fdate)
265 bind(c,name=
'mpas_state_gpnorm_f90')
267 integer(c_int),
intent(in) :: c_key_state
268 integer(c_int),
intent(in) :: kf
269 real(c_double),
intent(inout) :: pstat(3*kf)
272 real(kind=kind_real) :: zstat(3, kf)
273 integer :: jj, js, jf
277 call self%gpnorm(kf, zstat)
282 pstat(jj) = zstat(js,jf)
291 bind(c,name=
'mpas_state_rms_f90')
293 integer(c_int),
intent(in) :: c_key_state
294 real(c_double),
intent(inout) :: prms
297 real(kind=kind_real) :: zz
310 bind(c,name=
'mpas_state_sizes_f90')
312 integer(c_int),
intent(in) :: c_key_self
313 integer(c_int),
intent(inout) :: nc,nf
319 nc = self%geom%nCellsGlobal
326 bind(c,name=
'mpas_state_serial_size_f90')
331 integer(c_int),
intent(in) :: c_key_self
332 integer(c_size_t),
intent(out) :: c_vsize
337 call self%serial_size(c_vsize)
344 bind(c,name=
'mpas_state_serialize_f90')
349 integer(c_int),
intent(in) :: c_key_self
350 integer(c_size_t),
intent(in) :: c_vsize
351 real(c_double),
intent(out) :: c_vect_inc(c_vsize)
356 call self%serialize(c_vsize, c_vect_inc)
363 bind(c,name=
'mpas_state_deserialize_f90')
368 integer(c_int),
intent(in) :: c_key_self
369 integer(c_size_t),
intent(in) :: c_vsize
370 real(c_double),
intent(in) :: c_vect_inc(c_vsize)
371 integer(c_size_t),
intent(inout):: c_index
376 call self%deserialize(c_vsize, c_vect_inc, c_index)
type(registry_t), public mpas_fields_registry
Linked list interface - defines registry_t type.
character(len=maxvarlen), dimension(3), public mpas_re_fields
character(len=maxvarlen), dimension(6), public mpas_hydrometeor_fields
type(registry_t), public mpas_geom_registry
Linked list interface - defines registry_t type.
subroutine mpas_state_serial_size_c(c_key_self, c_vsize)
subroutine mpas_state_delete_c(c_key_self)
subroutine mpas_state_analytic_init_c(c_key_state, c_key_geom, c_conf, c_dt)
subroutine mpas_state_change_resol_c(c_key_state, c_key_rhs)
subroutine mpas_state_create_c(c_key_self, c_key_geom, c_state_vars, c_inc_vars)
subroutine mpas_state_rms_c(c_key_state, prms)
subroutine mpas_state_serialize_c(c_key_self, c_vsize, c_vect_inc)
subroutine mpas_state_copy_c(c_key_self, c_key_rhs)
subroutine mpas_state_read_file_c(c_key_state, c_conf, c_dt)
subroutine mpas_state_add_incr_c(c_key_self, c_key_rhs)
subroutine mpas_state_gpnorm_c(c_key_state, kf, pstat)
subroutine mpas_state_deserialize_c(c_key_self, c_vsize, c_vect_inc, c_index)
subroutine mpas_state_sizes_c(c_key_self, nc, nf)
subroutine mpas_state_zero_c(c_key_self)
subroutine mpas_state_write_file_c(c_key_state, c_conf, c_dt)
subroutine mpas_state_axpy_c(c_key_self, c_zz, c_key_rhs)
subroutine, public add_incr(self, increment)
add increment to state
subroutine, public analytic_ic(self, geom, f_conf, vdate)
Analytic Initialization for the MPAS Model.
Fortran derived type to hold MPAS field.
Fortran derived type to hold geometry definition.