solid_info_type Derived Type

type, public :: solid_info_type


Components

Type Visibility Attributes Name Initial
integer, public :: nsolpts
integer, public, allocatable :: solpts(:,:)
logical, public, allocatable :: lsolptsrank(:)
integer, public, allocatable :: solptsrank(:)
integer, public :: nsolptsrank
integer, public, allocatable :: solpts_loc(:,:)

Source Code

   TYPE solid_info_type
     integer :: nsolpts
     integer, allocatable :: solpts(:,:)
     logical, allocatable :: lsolptsrank(:) !
     integer, allocatable :: solptsrank(:) ! indices of points on current rank
     integer :: nsolptsrank
     integer, allocatable :: solpts_loc(:,:)
   end TYPE solid_info_type