gfb Derived Type

type, public, abstract :: gfb

An abstract class of a grid function of element boundary data.


Inherited by

type~~gfb~~InheritedByGraph type~gfb gfb type~rgfb rgfb type~rgfb->type~gfb type~cgfb cgfb type~cgfb->type~gfb type~igfb igfb type~igfb->type~gfb type~tdc tdc type~tdc->type~rgfb dxdlambda_b, dxdxi_b type~scal_schw scal_schw type~scal_schw->type~rgfb eq_lambda, eq_s, eq_sinv type~scal_schw->type~tdc time_dep_coord type~wtube wtube type~wtube->type~igfb boundary_info type~sf_observer sf_observer type~sf_observer->type~scal_schw p

Contents

Source Code

gfb

Components

TypeVisibility AttributesNameInitial
integer(kind=ip), public :: n

The number of elements in the grid function.

character(len=:), public, allocatable:: vname

The name of the boundary data.

integer(kind=ip), public :: iob_id

The file unit used for output of this object.


Source Code

  type, abstract :: gfb
  !! An abstract class of a grid function of element boundary data.
    integer(ip) :: n
    !! The number of elements in the grid function.
    character(:), allocatable :: vname
    !! The name of the boundary data.
    integer(ip) :: iob_id
    !! The file unit used for output of this object.
  end type gfb