Neko 1.99.2
A portable framework for high-order spectral element flow simulations
Loading...
Searching...
No Matches
registry_entry Module Reference

Defines a registry entry for storing and requesting temporary objects This is used in the scratch registries to store temporary fields, vectors, and matrices.

Data Types

type  registry_entry_t
 

Functions/Subroutines

subroutine init_register_field (this, dof, name)
 Initialize a register entry.
 
subroutine init_register_vector (this, n, name)
 Initialize a register entry.
 
subroutine init_register_matrix (this, nrows, ncols, name)
 Initialize a register entry.
 
subroutine free_register (this)
 Free a register entry.
 
pure character(len=:) function, allocatable get_name (this)
 Get the name of the registry entry.
 
pure character(len=:) function, allocatable get_type (this)
 Get the type of the registry entry.
 
pure logical function is_allocated (this)
 Check if the registry entry is allocated.
 
type(field_t) function, pointer get_field (this)
 Get the field pointer of the registry entry.
 
type(vector_t) function, pointer get_vector (this)
 Get the vector pointer of the registry entry.
 
type(matrix_t) function, pointer get_matrix (this)
 Get the matrix pointer of the registry entry.
 

Function/Subroutine Documentation

◆ free_register()

subroutine registry_entry::free_register ( class(registry_entry_t), intent(inout this)
private

Definition at line 139 of file registry_entry.f90.

◆ get_field()

type(field_t) function, pointer registry_entry::get_field ( class(registry_entry_t), intent(in), target  this)
private

Definition at line 185 of file registry_entry.f90.

Here is the caller graph for this function:

◆ get_matrix()

type(matrix_t) function, pointer registry_entry::get_matrix ( class(registry_entry_t), intent(in), target  this)
private

Definition at line 207 of file registry_entry.f90.

Here is the caller graph for this function:

◆ get_name()

pure character(len=:) function, allocatable registry_entry::get_name ( class(registry_entry_t), intent(in this)
private

Definition at line 164 of file registry_entry.f90.

◆ get_type()

pure character(len=:) function, allocatable registry_entry::get_type ( class(registry_entry_t), intent(in this)
private

Definition at line 171 of file registry_entry.f90.

◆ get_vector()

type(vector_t) function, pointer registry_entry::get_vector ( class(registry_entry_t), intent(in), target  this)
private

Definition at line 196 of file registry_entry.f90.

Here is the caller graph for this function:

◆ init_register_field()

subroutine registry_entry::init_register_field ( class(registry_entry_t), intent(inout this,
type(dofmap_t), intent(in), target  dof,
character(len=*), intent(in name 
)

Definition at line 73 of file registry_entry.f90.

◆ init_register_matrix()

subroutine registry_entry::init_register_matrix ( class(registry_entry_t), intent(inout this,
integer, intent(in nrows,
integer, intent(in ncols,
character(len=*), intent(in), optional  name 
)
private

Definition at line 117 of file registry_entry.f90.

◆ init_register_vector()

subroutine registry_entry::init_register_vector ( class(registry_entry_t), intent(inout this,
integer, intent(in n,
character(len=*), intent(in), optional  name 
)
private

Definition at line 95 of file registry_entry.f90.

◆ is_allocated()

pure logical function registry_entry::is_allocated ( class(registry_entry_t), intent(in this)
private

Definition at line 178 of file registry_entry.f90.