TwoPointVector2D Derived Type

type, public, extends(TwoPointVector2D_t) :: TwoPointVector2D


Inherits

type~~twopointvector2d~2~~InheritsGraph type~twopointvector2d~2 TwoPointVector2D c_ptr c_ptr type~twopointvector2d~2->c_ptr interior_gpu type~twopointvector2d_t TwoPointVector2D_t type~twopointvector2d~2->type~twopointvector2d_t type~self_dataobj SELF_DataObj type~twopointvector2d_t->type~self_dataobj type~lagrange Lagrange type~self_dataobj->type~lagrange interp type~metadata Metadata type~self_dataobj->type~metadata meta EquationParser EquationParser type~self_dataobj->EquationParser eqn type~lagrange_t Lagrange_t type~lagrange->type~lagrange_t type~lagrange_t->c_ptr blas_handle

Contents

Source Code


Components

TypeVisibilityAttributesNameInitial
integer, public :: M
integer, public :: N
character(len=3), public :: backend ="gpu"
type(EquationParser), public, allocatable:: eqn(:)
real(kind=prec), public, pointer, contiguous, dimension(:,:,:,:,:,:):: interior
type(c_ptr), public :: interior_gpu
type(Lagrange), public, pointer:: interp
type(Metadata), public, allocatable:: meta(:)
integer, public :: nElem
integer, public :: nVar

Type-Bound Procedures

  • public subroutine Divergence_TwoPointVector2D_t(this, df)

    Computes the split-form (two-point) divergence of a 2-D vector field in the reference element (computational coordinates).

    Read more…

    Arguments

    TypeIntentOptionalAttributesName
    class(TwoPointVector2D_t), intent(in) :: this
    real(kind=prec), intent(out) :: df(1:this%N+1,1:this%N+1,1:this%nElem,1:this%nVar)
  • public subroutine Divergence_TwoPointVector2D(this, df)

    GPU implementation of the reference-element split-form divergence. df must be a device pointer to a scalar field of size (N+1)(N+1)nElem*nVar.

    Arguments

    TypeIntentOptionalAttributesName
    class(TwoPointVector2D), intent(in) :: this
    type(c_ptr), intent(inout) :: df

procedure, private :: Divergence_TwoPointVector2D

  • public subroutine Divergence_TwoPointVector2D(this, df)

    GPU implementation of the reference-element split-form divergence. df must be a device pointer to a scalar field of size (N+1)(N+1)nElem*nVar.

    Arguments

    TypeIntentOptionalAttributesName
    class(TwoPointVector2D), intent(in) :: this
    type(c_ptr), intent(inout) :: df

procedure, public :: Free => Free_TwoPointVector2D

procedure, public :: Init => Init_TwoPointVector2D

  • public subroutine Init_TwoPointVector2D(this, interp, nVar, nElem)

    Arguments

    TypeIntentOptionalAttributesName
    class(TwoPointVector2D), intent(out) :: this
    type(Lagrange), intent(in), target:: interp
    integer, intent(in) :: nVar
    integer, intent(in) :: nElem

procedure, public :: SetDescription => SetDescription_DataObj

  • public subroutine SetDescription_DataObj(this, ivar, description)

    Set the description of the ivar-th variable

    Arguments

    TypeIntentOptionalAttributesName
    class(SELF_DataObj), intent(inout) :: this
    integer, intent(in) :: ivar
    character, intent(in) :: description

generic, public :: SetEquation => SetEquation_DataObj

  • public subroutine SetEquation_DataObj(this, ivar, eqnChar)

    Sets the equation parser for the ivar-th variable

    Arguments

    TypeIntentOptionalAttributesName
    class(SELF_DataObj), intent(inout) :: this
    integer, intent(in) :: ivar
    character, intent(in) :: eqnChar

procedure, public :: SetName => SetName_DataObj

  • public subroutine SetName_DataObj(this, ivar, name)

    Set the name of the ivar-th variable

    Arguments

    TypeIntentOptionalAttributesName
    class(SELF_DataObj), intent(inout) :: this
    integer, intent(in) :: ivar
    character, intent(in) :: name

procedure, public :: SetUnits => SetUnits_DataObj

  • public subroutine SetUnits_DataObj(this, ivar, units)

    Set the units of the ivar-th variable

    Arguments

    TypeIntentOptionalAttributesName
    class(SELF_DataObj), intent(inout) :: this
    integer, intent(in) :: ivar
    character, intent(in) :: units

procedure, public :: UpdateDevice => UpdateDevice_TwoPointVector2D

procedure, public :: UpdateHost => UpdateHost_TwoPointVector2D

Source Code

  type,extends(TwoPointVector2D_t),public :: TwoPointVector2D
    character(3) :: backend = "gpu"
    type(c_ptr) :: interior_gpu

  contains

    procedure,public :: Init => Init_TwoPointVector2D
    procedure,public :: Free => Free_TwoPointVector2D

    procedure,public :: UpdateHost => UpdateHost_TwoPointVector2D
    procedure,public :: UpdateDevice => UpdateDevice_TwoPointVector2D

    generic,public :: Divergence => Divergence_TwoPointVector2D
    procedure,private :: Divergence_TwoPointVector2D

  endtype TwoPointVector2D