Neko  0.8.1
A portable framework for high-order spectral element flow simulations
field_series Module Reference

Stores a series fields. More...

Data Types

type  field_series_t
 

Functions/Subroutines

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

Detailed Description

Stores a series fields.

Function/Subroutine Documentation

◆ field_series_free()

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

Deallocates a field series.

Definition at line 79 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 
)

Initialize a field series of length len for a field f.

Definition at line 55 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

Set all fields in a series to g.

Definition at line 114 of file field_series.f90.

◆ field_series_size()

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

Return the size of the field series.

Definition at line 94 of file field_series.f90.

◆ field_series_update()

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

Update a field series (evict oldest entry)

Definition at line 101 of file field_series.f90.