MESH Derived Type

type, private :: MESH

Derived type with the cylindrical coordinates of the grid nodes at which the pre-computed plasma profiles and fields are known.


Inherited by

type~~mesh~~InheritedByGraph type~mesh MESH type~fields FIELDS type~fields->type~mesh X type~profiles PROFILES type~profiles->type~mesh X

Contents

Source Code


Components

TypeVisibility AttributesNameInitial
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.


Source Code

  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