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

Contains the vector_series_t type.

Data Types

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

Functions/Subroutines

subroutine vector_series_init (this, v, len)
 Initialize a vector series of length len for a vector v.
 
subroutine vector_series_free (this)
 Deallocates a vector series.
 
integer function vector_series_size (this)
 Return the size of the vector series.
 
subroutine vector_series_update (this)
 Update a vector series (evict oldest entry)
 
subroutine vector_series_set (this, g)
 Set all vectors in a series to g.
 

Function/Subroutine Documentation

◆ vector_series_free()

subroutine vector_series::vector_series_free ( class(vector_series_t), intent(inout this)
private

Definition at line 89 of file vector_series.f90.

◆ vector_series_init()

subroutine vector_series::vector_series_init ( class(vector_series_t), intent(inout this,
type(vector_t), intent(inout), target  v,
integer  len 
)

Definition at line 65 of file vector_series.f90.

◆ vector_series_set()

subroutine vector_series::vector_series_set ( class(vector_series_t), intent(inout this,
type(vector_t), intent(in g 
)
private

Definition at line 129 of file vector_series.f90.

◆ vector_series_size()

integer function vector_series::vector_series_size ( class(vector_series_t), intent(in this)
private

Definition at line 109 of file vector_series.f90.

◆ vector_series_update()

subroutine vector_series::vector_series_update ( class(vector_series_t), intent(inout this)
private

Definition at line 116 of file vector_series.f90.