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

Contains the field_serties_t type.

Data Types

type  field_series_ptr_t
 A wrapper for a pointer to a field_series_t. More...
 
type  field_series_t
 Stores a series (sequence) of fields, logically connected to a base field, and arranged according to some ordering. Currently used to store time-lagged values of solution fields. More...
 

Functions/Subroutines

subroutine field_series_init (this, f, len)
 Initialize a field series of length len for a field f.
 
subroutine field_series_free (this)
 Deallocates a field series.
 
integer function field_series_size (this)
 Return the size of the field series.
 
subroutine field_series_update (this)
 Update a field series (evict oldest entry)
 
subroutine field_series_set (this, g)
 Set all fields in a series to g.
 

Function/Subroutine Documentation

◆ field_series_free()

subroutine field_series::field_series_free ( class(field_series_t), intent(inout this)
private

Definition at line 89 of file field_series.f90.

◆ field_series_init()

subroutine field_series::field_series_init ( class(field_series_t), intent(inout this,
type(field_t), intent(inout), target  f,
integer  len 
)

Definition at line 65 of file field_series.f90.

◆ field_series_set()

subroutine field_series::field_series_set ( class(field_series_t), intent(inout this,
type(field_t), intent(in g 
)
private

Definition at line 124 of file field_series.f90.

◆ field_series_size()

integer function field_series::field_series_size ( class(field_series_t), intent(in this)
private

Definition at line 104 of file field_series.f90.

◆ field_series_update()

subroutine field_series::field_series_update ( class(field_series_t), intent(inout this)
private

Definition at line 111 of file field_series.f90.