Report Typos and Errors    
Semi-Lagrangian Library
Modular library for kinetic and gyrokinetic simulations of plasmas in fusion energy devices.
Derived types and interfaces | Functions/Subroutines | Variables
sll_m_spline_matrix_dense Module Reference

Description

Derived type for dense matrices.

Author
Yaman Güçlü - IPP Garching
Edoardo Zoni - IPP Garching

Derived types and interfaces

type  sll_t_spline_matrix_dense
 Dense matrix type. More...
 
interface  dgetrf
 
interface  dgetrs
 

Functions/Subroutines

subroutine s_spline_matrix_dense__init (self, n)
 
subroutine s_spline_matrix_dense__set_element (self, i, j, a_ij)
 
subroutine s_spline_matrix_dense__factorize (self)
 
subroutine s_spline_matrix_dense__solve_inplace (self, bx)
 
subroutine s_spline_matrix_dense__write (self, unit, fmt)
 
subroutine s_spline_matrix_dense__free (self)
 

Variables

integer, parameter wp = f64
 Working precision. More...
 

Function/Subroutine Documentation

◆ s_spline_matrix_dense__factorize()

subroutine sll_m_spline_matrix_dense::s_spline_matrix_dense__factorize ( class(sll_t_spline_matrix_dense), intent(inout)  self)
private

Definition at line 111 of file sll_m_spline_matrix_dense.F90.

◆ s_spline_matrix_dense__free()

subroutine sll_m_spline_matrix_dense::s_spline_matrix_dense__free ( class(sll_t_spline_matrix_dense), intent(inout)  self)
private

Definition at line 196 of file sll_m_spline_matrix_dense.F90.

◆ s_spline_matrix_dense__init()

subroutine sll_m_spline_matrix_dense::s_spline_matrix_dense__init ( class(sll_t_spline_matrix_dense), intent(out)  self,
integer, intent(in)  n 
)
private

Definition at line 86 of file sll_m_spline_matrix_dense.F90.

◆ s_spline_matrix_dense__set_element()

subroutine sll_m_spline_matrix_dense::s_spline_matrix_dense__set_element ( class(sll_t_spline_matrix_dense), intent(inout)  self,
integer, intent(in)  i,
integer, intent(in)  j,
real(wp), intent(in)  a_ij 
)
private

Definition at line 100 of file sll_m_spline_matrix_dense.F90.

◆ s_spline_matrix_dense__solve_inplace()

subroutine sll_m_spline_matrix_dense::s_spline_matrix_dense__solve_inplace ( class(sll_t_spline_matrix_dense), intent(in)  self,
real(wp), dimension(:), intent(inout)  bx 
)
private

Definition at line 140 of file sll_m_spline_matrix_dense.F90.

◆ s_spline_matrix_dense__write()

subroutine sll_m_spline_matrix_dense::s_spline_matrix_dense__write ( class(sll_t_spline_matrix_dense), intent(in)  self,
integer, intent(in), optional  unit,
character(len=*), intent(in), optional  fmt 
)
private

Definition at line 165 of file sll_m_spline_matrix_dense.F90.

Variable Documentation

◆ wp

integer, parameter wp = f64
private

Working precision.

Definition at line 27 of file sll_m_spline_matrix_dense.F90.

    Report Typos and Errors