Report Typos and Errors    
Semi-Lagrangian Library
Modular library for kinetic and gyrokinetic simulations of plasmas in fusion energy devices.
Data Types | Modules | Functions/Subroutines | Variables
sll_m_vector_space_base.F90 File Reference
#include "sll_errors.h"
Include dependency graph for sll_m_vector_space_base.F90:

Go to the source code of this file.

Data Types

type  sll_c_vector_space
 Abstract base class for all vector spaces. More...
 
interface  i_copy
 z = x More...
 
interface  i_incr
 z += x More...
 
interface  i_scal
 z *= a More...
 

Modules

module  sll_m_vector_space_base
 Abstract type implementing a generic vector space.
 

Functions/Subroutines

subroutine s_vector_space__add (self, x, y)
 z = x + y More...
 
subroutine s_vector_space__mult (self, a, x)
 z = a * x More...
 
subroutine s_vector_space__mult_add (self, a, x, y)
 z = a * x + y More...
 
subroutine s_vector_space__incr_mult (self, a, x)
 z += a * x More...
 
subroutine s_vector_space__lcmb (self, a, x)
 z = \( \sum_i ( a_i x_i ) \) More...
 
subroutine s_vector_space__incr_lcmb (self, a, x)
 z += \( \sum_i ( a_i x_i ) \) More...
 
real(wp) function f_vector_space__norm (self)
 Norm of vector: ||z||. More...
 
real(wp) function f_vector_space__inner (self, x)
 Inner product: <z,x> More...
 
subroutine s_vector_space__show (self)
 Show something, for debug. More...
 
subroutine s_vector_space__source_scalar (self, x)
 Copy constructor: create one copy of vector z More...
 
subroutine s_vector_space__source_array (self, x, n)
 Copy constructor: create n copies of vector z More...
 

Variables

integer, parameter wp = f64
 Working precision. More...
 
    Report Typos and Errors