celltype Derived Type

type, public :: celltype


Contents

Source Code


Components

TypeVisibility AttributesNameInitial
real(kind=wp), public :: volume

Store cell volume

real(kind=wp), public :: centerx
real(kind=wp), public :: centery
real(kind=wp), public :: centerz

Store Cell-center location


Source Code

    type, public :: celltype
      real(wp) :: volume
      !< Store cell volume
      real(wp) :: centerx
      real(wp) :: centery
      real(wp) :: centerz
      !< Store Cell-center location 
    end type celltype