wfns_t Derived Type

type, public :: wfns_t


Contents

Source Code


Components

TypeVisibility AttributesNameInitial
type(wf_t), public, pointer:: wf=> null()
integer, public :: set
character(len=100), public :: type =""
type(Grid), public :: grid
type(ps_annotation_t), public :: annotation
type(wfns_t), public, pointer:: next=> null()

Source Code

type, public :: wfns_t
   type(wf_t), pointer :: wf => null()
   integer             :: set
   character(len=100)  :: type = ""
   !
   ! Optional private grid
   !
   type(Grid)             :: grid
   type(ps_annotation_t)  :: annotation
   !
   type(wfns_t), pointer     :: next => null()

end type wfns_t