MPAS-JEDI
mpasjedi_getvalues_mod Module Reference

Data Types

type  mpasjedi_getvalues_base
 
type  mpasjedi_getvalues
 

Functions/Subroutines

subroutine, public getvalues_base_create (self, geom, locs, f_conf)
 Linked list implementation. More...
 
subroutine create (self, geom, locs, f_conf)
 GetValues class 'create' logic. More...
 
subroutine, public getvalues_base_delete (self)
 GetValues base class 'delete' logic. More...
 
subroutine delete (self)
 GetValues class 'delete' logic. More...
 
subroutine, public fill_geovals (self, geom, state, t1, t2, locs, gom)
 Interpolates from geovar mpas_fields to populate ufo_geovals. More...
 
subroutine initialize_uns_interp (self, grid, lats_obs, lons_obs)
 Initializes an unstructured interpolation type. More...
 
subroutine integer_interpolation_bump (self, ngrid, nlocs, data_in, obs_field_int, gom, jvar, time_mask)
 Performs interpolation of integer fields using BUMP. More...
 
subroutine integer_interpolation_unstructured (self, ngrid, nlocs, data_in, work_field, gom, jvar, time_mask)
 Performs interpolation of integer fields using unstructured interpolation. More...
 

Variables

type(registry_t), public mpas_getvalues_registry
 Linked list interface - defines registry_t type. More...
 
character(len=1024) message
 

Function/Subroutine Documentation

◆ create()

subroutine mpasjedi_getvalues_mod::create ( class(mpasjedi_getvalues), intent(inout)  self,
type(mpas_geom), intent(in)  geom,
type(ufo_locations), intent(in)  locs,
type(fckit_configuration), intent(in)  f_conf 
)
private

GetValues class 'create' logic.

create This subroutine contstructs an mpasjedi_getvalues object class instance.

Parameters
[in,out]selfgetvalues self
[in]geomgeometry (mpas mesh)
[in]locsufo geovals (obs) locations
[in]f_confconfiguration

Definition at line 147 of file mpasjedi_getvalues_mod.F90.

Here is the call graph for this function:

◆ delete()

subroutine mpasjedi_getvalues_mod::delete ( class(mpasjedi_getvalues), intent(inout)  self)
private

GetValues class 'delete' logic.

delete This subroutine deletes (frees memory) for an mpasjedi_getvalues object class instance.

Parameters
[in,out]selfgetvalues self

Definition at line 178 of file mpasjedi_getvalues_mod.F90.

Here is the call graph for this function:

◆ fill_geovals()

subroutine, public mpasjedi_getvalues_mod::fill_geovals ( class(mpasjedi_getvalues_base), intent(inout)  self,
type(mpas_geom), intent(in)  geom,
type(mpas_fields), intent(in)  state,
type(datetime), intent(in)  t1,
type(datetime), intent(in)  t2,
type(ufo_locations), intent(in)  locs,
type(ufo_geovals), intent(inout)  gom 
)

Interpolates from geovar mpas_fields to populate ufo_geovals.

fill_geovals This subroutine populates the variables in a ufo_geovals object by interpolating the state variables in an mpas_fields object. This is the non-linear subroutine used in both GetValues and LinearGetValues classes

Parameters
[in,out]selfgetvalues_base self
[in]geomgeometry (mpas mesh)
[in]statestate containing geovars
[in]t1time window begin
[in]t2time window end
[in]locsobservation locations
[in,out]gomgeovals

Definition at line 190 of file mpasjedi_getvalues_mod.F90.

Here is the caller graph for this function:

◆ getvalues_base_create()

subroutine, public mpasjedi_getvalues_mod::getvalues_base_create ( class(mpasjedi_getvalues_base), intent(inout)  self,
type(mpas_geom), intent(in)  geom,
type(ufo_locations), intent(in)  locs,
type(fckit_configuration), intent(in)  f_conf 
)

Linked list implementation.

GetValues base class 'create' logic

getvalues_base_create This subroutine populates the getvalues_base class members. This subroutine is called from the 'create' subroutines of all derived classes. (i.e. getvalues and lineargetvalues)

Parameters
[in,out]selfgetvalues_base self
[in]geomgeometry (mpas mesh)
[in]locsufo geovals (obs) locations
[in]f_confconfiguration

Definition at line 99 of file mpasjedi_getvalues_mod.F90.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ getvalues_base_delete()

subroutine, public mpasjedi_getvalues_mod::getvalues_base_delete ( class(mpasjedi_getvalues_base), intent(inout)  self)

GetValues base class 'delete' logic.

getvalues_base_delete This subroutine deletes (frees memory) for the getvalues_base class members. This subroutine is called from the 'delete' subroutines of all derived classes. (i.e. getvalues and lineargetvalues)

Parameters
[in,out]selfgetvalues_base self

Definition at line 163 of file mpasjedi_getvalues_mod.F90.

Here is the caller graph for this function:

◆ initialize_uns_interp()

subroutine mpasjedi_getvalues_mod::initialize_uns_interp ( class(mpasjedi_getvalues_base), intent(inout)  self,
type(mpas_geom), intent(in)  grid,
real(kind=kind_real), dimension(:), intent(in), allocatable  lats_obs,
real(kind=kind_real), dimension(:), intent(in), allocatable  lons_obs 
)
private

Initializes an unstructured interpolation type.

initialize_uns_interp This subroutine calls unsinterpcreate, which calculates the barycentric weights used to interpolate data between the mpas mesh locations (grid) and the observation locations.

Parameters
[in]gridmpas mesh data
[in]lats_obslatitudes of obs
[in]lons_obslongitudes of obs

Definition at line 319 of file mpasjedi_getvalues_mod.F90.

Here is the caller graph for this function:

◆ integer_interpolation_bump()

subroutine mpasjedi_getvalues_mod::integer_interpolation_bump ( class(mpasjedi_getvalues_base), intent(inout)  self,
integer, intent(in)  ngrid,
integer, intent(in)  nlocs,
integer, dimension(:), intent(in)  data_in,
integer, dimension(:,:), intent(inout), allocatable  obs_field_int,
type(ufo_geovals), intent(inout)  gom,
integer, intent(in)  jvar,
logical(c_bool), dimension(nlocs), intent(in)  time_mask 
)
private

Performs interpolation of integer fields using BUMP.

integer_interpolation_bump This subroutine performs the interpolation of integer-valued fields (i.e. types) using BUMP

Parameters
[in]ngridnumber of cells in model mesh
[in]nlocsnumber of locations for obs
[in]data_indata to interpolate
[in,out]obs_field_intoutput array of interpolated data
[in,out]gomoutput geoVaLs
[in]jvargom % geovals index
[in]time_maskmask for time window

Definition at line 362 of file mpasjedi_getvalues_mod.F90.

◆ integer_interpolation_unstructured()

subroutine mpasjedi_getvalues_mod::integer_interpolation_unstructured ( class(mpasjedi_getvalues_base), intent(inout)  self,
integer, intent(in)  ngrid,
integer, intent(in)  nlocs,
integer, dimension(:), intent(in)  data_in,
real(kind=kind_real), dimension(ngrid), intent(inout)  work_field,
type(ufo_geovals), intent(inout)  gom,
integer, intent(in)  jvar,
logical(c_bool), dimension(nlocs), intent(in)  time_mask 
)
private

Performs interpolation of integer fields using unstructured interpolation.

integer_interpolation_unstructured This subroutine performs the interpolation of integer-valued fields (i.e. types) using unstructured interpolation

Parameters
[in]ngridnumber of cells in model mesh
[in]nlocsnumber of locations for obs
[in]data_indata to interpolate
[in,out]work_field(ngrid,1) array
[in,out]gomoutput geoVaLs
[in]jvargom % geovals index
[in]time_maskmask for time window

Definition at line 397 of file mpasjedi_getvalues_mod.F90.

Here is the call graph for this function:

Variable Documentation

◆ message

character (len=1024) mpasjedi_getvalues_mod::message
private

Definition at line 83 of file mpasjedi_getvalues_mod.F90.

◆ mpas_getvalues_registry

type(registry_t), public mpasjedi_getvalues_mod::mpas_getvalues_registry

Linked list interface - defines registry_t type.

Global registry

Definition at line 79 of file mpasjedi_getvalues_mod.F90.