hdf_desc_t Derived Type

type, public :: hdf_desc_t


Inherited by

type~~hdf_desc_t~~InheritedByGraph type~hdf_desc_t hdf_desc_t type~channel_t channel_t type~channel_t->type~hdf_desc_t hdf type~hdf_desc_p_t hdf_desc_p_t type~hdf_desc_p_t->type~hdf_desc_t p type~solid_t solid_t type~solid_t->type~hdf_desc_t hdf type~strand_t strand_t type~strand_t->type~hdf_desc_t hdf type~tbl_dsc_t tbl_dsc_t type~tbl_dsc_t->type~hdf_desc_p_t comps type~hdf5_t hdf5_t type~hdf5_t->type~tbl_dsc_t tbl_dsc

Components

Type Visibility Attributes Name Initial
character(len=:), public, allocatable :: name

name that will appear in HDF5 file

real(kind=dp), public, allocatable :: node_x(:)

spacial axes (scale) of 1d element

real(kind=dp), public, pointer :: data(:,:)

data to write into hdf5 data table


Source Code

    type hdf_desc_t
        character(:), allocatable :: name      !! name that will appear in HDF5 file
        real(dp),     allocatable :: node_x(:) !! spacial axes (scale) of 1d element
        real(dp),         pointer :: data(:,:) !! data to write into hdf5 data table
    end type hdf_desc_t