rxyz_vector Derived Type

type, public :: rxyz_vector


Inherited by

type~~rxyz_vector~~InheritedByGraph type~rxyz_vector rxyz_vector type~sspstructure SSPStructure type~sspstructure->type~rxyz_vector Seg

Components

Type Visibility Attributes Name Initial
real(kind=8), public, ALLOCATABLE :: r(:)
real(kind=8), public, ALLOCATABLE :: x(:)
real(kind=8), public, ALLOCATABLE :: y(:)
real(kind=8), public, ALLOCATABLE :: z(:)

Source Code

  TYPE rxyz_vector
    REAL(KIND=8), ALLOCATABLE :: r(:), x(:), y(:), z(:)
  END TYPE rxyz_vector