vp_model Derived Type

type, public :: vp_model

Void pointer to dispersion model


Components

Type Visibility Attributes Name Initial
type(realspace_cutoff), public, allocatable :: cutoff

Additional real space cutoff

type(d3_model), public :: ptr

Actual payload


Source Code

   type :: vp_model
      !> Actual payload
      type(d3_model) :: ptr
      !> Additional real space cutoff
      type(realspace_cutoff), allocatable :: cutoff
   end type vp_model