panel_quadrature_plan_type Derived Type

type, public :: panel_quadrature_plan_type


Components

Type Visibility Attributes Name Initial
integer(kind=i32), public :: npoint = 0_i32
real(kind=dp), public, allocatable :: position(:,:)
real(kind=dp), public, allocatable :: weight(:)

Source Code

  type, public :: panel_quadrature_plan_type
    integer(i32) :: npoint = 0_i32
    real(dp), allocatable :: position(:, :)
    real(dp), allocatable :: weight(:)
  end type panel_quadrature_plan_type