Neko
0.9.0
A portable framework for high-order spectral element flow simulations
|
Base abstract type for source terms. More...
Public Member Functions | |
procedure, pass(this) | init_base => source_term_init_base |
Constructor for the source_term_t (base) type. More... | |
procedure, pass(this) | free_base => source_term_free_base |
Destructor for the source_term_t (base) type. More... | |
procedure, pass(this) | compute => source_term_compute_wrapper |
Executes compute_ based on time conditions. More... | |
procedure(source_term_init), deferred, pass | init |
The common constructor using a JSON object. More... | |
procedure(source_term_free), deferred, pass | free |
Destructor. More... | |
procedure(source_term_compute), deferred, pass | compute_ |
Computes the source term and adds the result to fields . More... | |
Public Attributes | |
type(field_list_t) | fields |
The fields to be updated with the source term values. More... | |
type(coef_t), pointer | coef => null() |
Coefficients for the SEM. More... | |
real(kind=rp) | start_time = 0.0_rp |
Start time for adding the source term. More... | |
real(kind=rp) | end_time = huge(0.0_rp) |
End time for adding the source term. More... | |
Definition at line 43 of file source_term.f90.
procedure, pass(this) source_term::source_term_t::compute |
Definition at line 58 of file source_term.f90.
procedure(source_term_compute), deferred, pass source_term::source_term_t::compute_ |
Definition at line 64 of file source_term.f90.
procedure(source_term_free), deferred, pass source_term::source_term_t::free |
Definition at line 62 of file source_term.f90.
procedure, pass(this) source_term::source_term_t::free_base |
Definition at line 56 of file source_term.f90.
procedure(source_term_init), deferred, pass source_term::source_term_t::init |
Definition at line 60 of file source_term.f90.
procedure, pass(this) source_term::source_term_t::init_base |
Definition at line 54 of file source_term.f90.
type(coef_t), pointer source_term::source_term_t::coef => null() |
Definition at line 47 of file source_term.f90.
real(kind=rp) source_term::source_term_t::end_time = huge(0.0_rp) |
Definition at line 51 of file source_term.f90.
type(field_list_t) source_term::source_term_t::fields |
Definition at line 45 of file source_term.f90.
real(kind=rp) source_term::source_term_t::start_time = 0.0_rp |
Definition at line 49 of file source_term.f90.