hvs_asciiSpatial_type Derived Type

type, public :: hvs_asciiSpatial_type

Description of the opened files for ascii output.


Inherited by

type~~hvs_asciispatial_type~~InheritedByGraph type~hvs_asciispatial_type hvs_asciiSpatial_type type~hvs_output_file_type hvs_output_file_type type~hvs_output_file_type->type~hvs_asciispatial_type asciiSpatial type~tem_tracking_instance_type tem_tracking_instance_type type~tem_tracking_instance_type->type~hvs_output_file_type output_file type~tem_tracking_type tem_tracking_type type~tem_tracking_type->type~tem_tracking_instance_type instance

Contents

Source Code


Components

Type Visibility Attributes Name Initial
integer, public :: outunit

File handle for the ascii file with the data.

character(len=pathLen), public :: basename

Basename of the VTK files to write

character(len=labelLen), public :: timestamp

Timestamp to construct the filename

integer, public :: chunkSize

number of elements that fit in the buffer

integer, public :: nChunks

number of chunks per output


Source Code

  type hvs_asciiSpatial_type
    !> File handle for the ascii file with the data.
    integer :: outunit

    !> Basename of the VTK files to write
    character(len=pathLen) :: basename

    !> Timestamp to construct the filename
    character(len=labelLen) :: timestamp

    !> number of elements that fit in the buffer
    integer :: chunkSize

    !> number of chunks per output
    integer :: nChunks
  end type hvs_asciiSpatial_type