Derived type with the cylindrical coordinates of the grid nodes at which the pre-computed plasma profiles and fields are known.
Type | Visibility | Attributes | Name | Initial | |||
---|---|---|---|---|---|---|---|
real(kind=rp), | public, | DIMENSION(:), ALLOCATABLE | :: | R | Radial grid. |
||
real(kind=rp), | public, | DIMENSION(:), ALLOCATABLE | :: | PHI | Azimuthal grid. |
||
real(kind=rp), | public, | DIMENSION(:), ALLOCATABLE | :: | Z | Z grid. |
TYPE, PRIVATE :: MESH
!! Derived type with the cylindrical coordinates of the grid nodes
!! at which the pre-computed plasma profiles and fields are known.
REAL(rp), DIMENSION(:), ALLOCATABLE :: R
!! Radial grid.
REAL(rp), DIMENSION(:), ALLOCATABLE :: PHI
!! Azimuthal grid.
REAL(rp), DIMENSION(:), ALLOCATABLE :: Z
!! Z grid.
END TYPE MESH