V3FIT
|
Defines the base class of the type primed_grid_class. This contains the state variables to define the currents and positions of the volumn integral. More...
Data Types | |
type | primed_grid_class |
Base class representing a primed grid. This is grid the volume integral will be summed over. More... | |
Functions/Subroutines | |
type(primed_grid_class) function, pointer | primed_grid_construct (num_v, flags, siesta_file, parallel, io_unit) |
Construct a primed_grid_class object. More... | |
type(primed_grid_class) function, pointer | primed_grid_construct_both (num_v, parallel) |
Construct a primed_grid_class object. More... | |
type(primed_grid_class) function, pointer | primed_grid_construct_ju (num_v, parallel) |
Construct a primed_grid_class object. More... | |
type(primed_grid_class) function, pointer | primed_grid_construct_jv (num_v, parallel) |
Construct a primed_grid_class object. More... | |
type(primed_grid_class) function, pointer | primed_grid_construct_siesta (num_v, siesta_file_name, parallel) |
Construct a primed_grid_class object. More... | |
subroutine | primed_grid_destruct (this) |
Deconstruct a primed_grid_class object. More... | |
subroutine | primed_grid_siesta_interpol (s, ilow, wlow, ihigh, whigh) |
Defines the base class of the type primed_grid_class. This contains the state variables to define the currents and positions of the volumn integral.
type (primed_grid_class) function, pointer primed_grid::primed_grid_construct | ( | integer, intent(in) | num_v, |
integer, intent(in) | flags, | ||
character (len=*), intent(in) | siesta_file, | ||
type (bmw_parallel_context_class), intent(in) | parallel, | ||
integer, intent(in) | io_unit | ||
) |
Construct a primed_grid_class object.
Allocates memory and initializes a primed_grid_class object depending on the option flags.
[in] | num_v | Number of toroidal grid points. |
[in] | flags | Number of toroidal grid points. |
[in] | parallel | bmw_parallel_context_class object instance. |
[in] | io_unit | Unit number to write messages to. |
Definition at line 68 of file primed_grid.f.
type (primed_grid_class) function, pointer primed_grid::primed_grid_construct_both | ( | integer, intent(in) | num_v, |
type (bmw_parallel_context_class), intent(in) | parallel | ||
) |
Construct a primed_grid_class object.
Allocates memory and initializes a primed_grid_class object. This computes the currents and positions on the primed grid. Plasma currents are obtained from Curl(B).
[in] | num_v | Number of toroidal grid points. |
[in] | parallel | bmw_parallel_context_class object instance. |
Definition at line 122 of file primed_grid.f.
type (primed_grid_class) function, pointer primed_grid::primed_grid_construct_ju | ( | integer, intent(in) | num_v, |
type (bmw_parallel_context_class), intent(in) | parallel | ||
) |
Construct a primed_grid_class object.
Allocates memory and initializes a primed_grid_class object with an This computes the currents and positions on the primed grid. J^u plasma current is obtained from force balance.
J^u = (p' + J^v*B^u)/B^v
[in] | num_v | Number of toroidal grid points. |
[in] | parallel | bmw_parallel_context_class object instance. |
Definition at line 413 of file primed_grid.f.
type (primed_grid_class) function, pointer primed_grid::primed_grid_construct_jv | ( | integer, intent(in) | num_v, |
type (bmw_parallel_context_class), intent(in) | parallel | ||
) |
Construct a primed_grid_class object.
Allocates memory and initializes a primed_grid_class object with an This computes the currents and positions on the primed grid. J^v plasma current is obtained from force balance.
J^v = (J^u*B^v - p')/B^u
[in] | num_v | Number of toroidal grid points. |
[in] | parallel | bmw_parallel_context_class object instance. |
Definition at line 764 of file primed_grid.f.
type (primed_grid_class) function, pointer primed_grid::primed_grid_construct_siesta | ( | integer, intent(in) | num_v, |
character (len=*) | siesta_file_name, | ||
type (bmw_parallel_context_class), intent(in) | parallel | ||
) |
Construct a primed_grid_class object.
Allocates memory and initializes a primed_grid_class object with an This computes the currents and positions on the primed grid. Plasma currents are obtained from Curl(B) of the siesta solution.
[in] | num_v | Number of toroidal grid points. |
[in] | siesta_file | Name of the siesta restart file. |
[in] | parallel | bmw_parallel_context_class object instance. |
Definition at line 1115 of file primed_grid.f.
subroutine primed_grid::primed_grid_destruct | ( | type (primed_grid_class), pointer | this | ) |
Deconstruct a primed_grid_class object.
Deallocates memory and uninitializes a primed_grid_class object.
[in,out] | this | A primed_grid_class instance. |
Definition at line 1457 of file primed_grid.f.