Semi-Lagrangian Library
Modular library for kinetic and gyrokinetic simulations of plasmas in fusion energy devices.
|
Module to sll_o_solve Poisson equation on one dimensional mesh using FFT transform.
Derived types and interfaces | |
type | sll_t_poisson_1d_periodic |
Solver data structure. More... | |
type | sll_c_poisson_1d_periodic |
interface | sll_o_new |
Create a sll_o_new poisson solver on 1d mesh. More... | |
interface | sll_o_initialize |
sll_o_initialize a sll_o_new poisson solver on 1d mesh More... | |
interface | sll_o_solve |
sll_o_solve the Poisson equation on 1d mesh and compute the potential More... | |
Functions/Subroutines | |
type(sll_t_poisson_1d_periodic) function, pointer | new_poisson_1d_periodic (eta1_min, eta1_max, nc_eta1, error) |
Create a sll_o_new solver. More... | |
subroutine | initialize_poisson_1d_periodic (self, eta1_min, eta1_max, nc_eta1, error) |
sll_o_initialize the solver More... | |
subroutine | solve_poisson_1d_periodic (self, field, rhs) |
type(sll_c_poisson_1d_periodic) function, pointer, public | sll_f_new_poisson_1d_periodic (eta1_min, eta1_max, nc_eta1) |
subroutine | initialize_poisson_1d_periodic_wrapper (poisson, eta1_min, eta1_max, nc_eta1) |
subroutine | compute_phi_from_rho_1d_periodic (poisson, phi, rho) |
subroutine | compute_e_from_rho_1d_periodic (poisson, E, rho) |
|
private |
Definition at line 221 of file sll_m_poisson_1d_periodic.F90.
|
private |
Definition at line 211 of file sll_m_poisson_1d_periodic.F90.
|
private |
sll_o_initialize the solver
[out] | self | Solver data structure |
[in] | nc_eta1 | number of cells |
[out] | error | error code |
[in] | eta1_min | left corner |
[in] | eta1_max | right corner |
Definition at line 102 of file sll_m_poisson_1d_periodic.F90.
|
private |
Definition at line 195 of file sll_m_poisson_1d_periodic.F90.
|
private |
Create a sll_o_new solver.
[in] | nc_eta1 | number of cells |
[out] | error | error code |
[in] | eta1_min | left corner |
[in] | eta1_max | right corner |
Definition at line 88 of file sll_m_poisson_1d_periodic.F90.
type(sll_c_poisson_1d_periodic) function, pointer, public sll_m_poisson_1d_periodic::sll_f_new_poisson_1d_periodic | ( | real(kind=f64), intent(in) | eta1_min, |
real(kind=f64), intent(in) | eta1_max, | ||
integer(kind=i32), intent(in) | nc_eta1 | ||
) |
Definition at line 175 of file sll_m_poisson_1d_periodic.F90.
|
private |
Definition at line 125 of file sll_m_poisson_1d_periodic.F90.