OOPS
qg_gom_mod Module Reference

Data Types

type  qg_gom
 

Functions/Subroutines

subroutine, public qg_gom_setup (self, nobs)
 Linked list implementation. More...
 
subroutine, public qg_gom_delete (self)
 Delete GOM. More...
 
subroutine, public qg_gom_copy (self, other)
 Copy GOM. More...
 
subroutine, public qg_gom_zero (self)
 Set GOM to zero. More...
 
subroutine, public qg_gom_abs (self)
 Get GOM absolute value. More...
 
subroutine, public qg_gom_random (self)
 Generate random GOM values. More...
 
subroutine, public qg_gom_mult (self, zz)
 Multiply GOM with a scalar. More...
 
subroutine, public qg_gom_add (self, other)
 Add GOM. More...
 
subroutine, public qg_gom_diff (self, other)
 Subtract GOM. More...
 
subroutine, public qg_gom_schurmult (self, other)
 Schur product for GOM. More...
 
subroutine, public qg_gom_divide (self, other)
 Schur division for GOM. More...
 
subroutine, public qg_gom_rms (self, rms)
 Compute GOM RMS. More...
 
subroutine, public qg_gom_dotprod (gom1, gom2, prod)
 GOM dot product. More...
 
subroutine, public qg_gom_stats (self, kobs, pmin, pmax, prms)
 Compute GOM stats. More...
 
subroutine, public qg_gom_maxloc (self, mxval, mxloc, mxvar)
 Find and locate GOM max. value. More...
 
subroutine, public qg_gom_read_file (self, f_conf)
 Read GOM from file. More...
 
subroutine, public qg_gom_write_file (self, f_conf)
 Write GOM to file. More...
 
subroutine, public qg_gom_analytic_init (self, locs, f_conf)
 GOM analytic initialization. More...
 

Variables

type(registry_t), public qg_gom_registry
 Linked list interface - defines registry_t type. More...
 

Function/Subroutine Documentation

◆ qg_gom_abs()

subroutine, public qg_gom_mod::qg_gom_abs ( type(qg_gom), intent(inout)  self)

Get GOM absolute value.

Parameters
[in,out]selfGOM

Definition at line 142 of file qg_gom_mod.F90.

Here is the caller graph for this function:

◆ qg_gom_add()

subroutine, public qg_gom_mod::qg_gom_add ( type(qg_gom), intent(inout)  self,
type(qg_gom), intent(in)  other 
)

Add GOM.

Parameters
[in,out]selfGOM
[in]otherOther GOM

Definition at line 219 of file qg_gom_mod.F90.

Here is the caller graph for this function:

◆ qg_gom_analytic_init()

subroutine, public qg_gom_mod::qg_gom_analytic_init ( type(qg_gom), intent(inout)  self,
type(qg_locs), intent(inout)  locs,
type(fckit_configuration), intent(in)  f_conf 
)

GOM analytic initialization.

Parameters
[in,out]selfGOM
[in,out]locsLocations
[in]f_confFCKIT configuration

Definition at line 597 of file qg_gom_mod.F90.

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

◆ qg_gom_copy()

subroutine, public qg_gom_mod::qg_gom_copy ( type(qg_gom), intent(inout)  self,
type(qg_gom), intent(in)  other 
)

Copy GOM.

Parameters
[in,out]selfGOM
[in]otherOther GOM

Definition at line 97 of file qg_gom_mod.F90.

Here is the caller graph for this function:

◆ qg_gom_delete()

subroutine, public qg_gom_mod::qg_gom_delete ( type(qg_gom), intent(inout)  self)

Delete GOM.

Parameters
[in,out]selfGOM

Definition at line 80 of file qg_gom_mod.F90.

Here is the caller graph for this function:

◆ qg_gom_diff()

subroutine, public qg_gom_mod::qg_gom_diff ( type(qg_gom), intent(inout)  self,
type(qg_gom), intent(in)  other 
)

Subtract GOM.

Parameters
[in,out]selfGOM
[in]otherOther GOM

Definition at line 236 of file qg_gom_mod.F90.

Here is the caller graph for this function:

◆ qg_gom_divide()

subroutine, public qg_gom_mod::qg_gom_divide ( type(qg_gom), intent(inout)  self,
type(qg_gom), intent(in)  other 
)

Schur division for GOM.

Parameters
[in,out]selfGOM
[in]otherOther GOM

Definition at line 270 of file qg_gom_mod.F90.

Here is the caller graph for this function:

◆ qg_gom_dotprod()

subroutine, public qg_gom_mod::qg_gom_dotprod ( type(qg_gom), intent(in)  gom1,
type(qg_gom), intent(in)  gom2,
real(kind_real), intent(inout)  prod 
)

GOM dot product.

Parameters
[in]gom1GOM 1
[in]gom2GOM 2
[in,out]prodDot product

Definition at line 359 of file qg_gom_mod.F90.

Here is the caller graph for this function:

◆ qg_gom_maxloc()

subroutine, public qg_gom_mod::qg_gom_maxloc ( type(qg_gom), intent(inout)  self,
real(kind_real), intent(inout)  mxval,
integer, intent(inout)  mxloc,
type(oops_variables), intent(inout)  mxvar 
)

Find and locate GOM max. value.

Parameters
[in,out]selfGOM
[in,out]mxvalMaximum value
[in,out]mxlocLocation of maximum value
[in,out]mxvarVariable of maximum value

Definition at line 441 of file qg_gom_mod.F90.

Here is the caller graph for this function:

◆ qg_gom_mult()

subroutine, public qg_gom_mod::qg_gom_mult ( type(qg_gom), intent(inout)  self,
real(kind_real), intent(in)  zz 
)

Multiply GOM with a scalar.

Parameters
[in,out]selfGOM
[in]zzMultiplier

Definition at line 202 of file qg_gom_mod.F90.

Here is the caller graph for this function:

◆ qg_gom_random()

subroutine, public qg_gom_mod::qg_gom_random ( type(qg_gom), intent(inout)  self)

Generate random GOM values.

Parameters
[in,out]selfGOM

Definition at line 158 of file qg_gom_mod.F90.

Here is the caller graph for this function:

◆ qg_gom_read_file()

subroutine, public qg_gom_mod::qg_gom_read_file ( type(qg_gom), intent(inout)  self,
type(fckit_configuration), intent(in)  f_conf 
)

Read GOM from file.

Parameters
[in,out]selfGOM
[in]f_confFCKIT configuration

Definition at line 501 of file qg_gom_mod.F90.

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

◆ qg_gom_rms()

subroutine, public qg_gom_mod::qg_gom_rms ( type(qg_gom), intent(inout)  self,
real(kind_real), intent(inout)  rms 
)

Compute GOM RMS.

Parameters
[in,out]selfGOM

Definition at line 320 of file qg_gom_mod.F90.

Here is the caller graph for this function:

◆ qg_gom_schurmult()

subroutine, public qg_gom_mod::qg_gom_schurmult ( type(qg_gom), intent(inout)  self,
type(qg_gom), intent(in)  other 
)

Schur product for GOM.

Parameters
[in,out]selfGOM
[in]otherOther GOM

Definition at line 253 of file qg_gom_mod.F90.

Here is the caller graph for this function:

◆ qg_gom_setup()

subroutine, public qg_gom_mod::qg_gom_setup ( type(qg_gom), intent(inout)  self,
integer, intent(in)  nobs 
)

Linked list implementation.

Setup GOM

Parameters
[in,out]selfGOM
[in]nobsNumber of observations

Definition at line 59 of file qg_gom_mod.F90.

Here is the caller graph for this function:

◆ qg_gom_stats()

subroutine, public qg_gom_mod::qg_gom_stats ( type(qg_gom), intent(inout)  self,
integer, intent(inout)  kobs,
real(kind_real), intent(inout)  pmin,
real(kind_real), intent(inout)  pmax,
real(kind_real), intent(inout)  prms 
)

Compute GOM stats.

Parameters
[in,out]selfGOM
[in,out]kobsNumber of observations
[in,out]pminMinimum value
[in,out]pmaxMaximum value
[in,out]prmsRMS

Definition at line 386 of file qg_gom_mod.F90.

Here is the caller graph for this function:

◆ qg_gom_write_file()

subroutine, public qg_gom_mod::qg_gom_write_file ( type(qg_gom), intent(inout)  self,
type(fckit_configuration), intent(in)  f_conf 
)

Write GOM to file.

Parameters
[in,out]selfGOM
[in]f_confFCKIT configuration

Definition at line 549 of file qg_gom_mod.F90.

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

◆ qg_gom_zero()

subroutine, public qg_gom_mod::qg_gom_zero ( type(qg_gom), intent(inout)  self)

Set GOM to zero.

Parameters
[in,out]selfGOM

Definition at line 126 of file qg_gom_mod.F90.

Here is the caller graph for this function:

Variable Documentation

◆ qg_gom_registry

type(registry_t), public qg_gom_mod::qg_gom_registry

Linked list interface - defines registry_t type.

Global registry

Definition at line 49 of file qg_gom_mod.F90.