grid_record Derived Type

type, public :: grid_record


Inherits

type~~grid_record~~InheritsGraph type~grid_record grid_record type~grid_specification_record grid_specification_record type~grid_record->type~grid_specification_record src_grid, dst_grid type~test_function_record test_function_record type~grid_record->type~test_function_record testfunction type~character_array character_array type~grid_specification_record->type~character_array gtype, gunits

Inherited by

type~~grid_record~~InheritedByGraph type~grid_record grid_record type~problem_descriptor_strings problem_descriptor_strings type~problem_descriptor_strings->type~grid_record Gfiles type~problem_descriptor_records problem_descriptor_records type~problem_descriptor_records->type~problem_descriptor_strings str type~harness_descriptor harness_descriptor type~harness_descriptor->type~problem_descriptor_records rcrd

Components

Type Visibility Attributes Name Initial
character(len=THARN_MAXSTR), public :: filename
integer, public :: nGspecs
type(grid_specification_record), public, pointer :: dst_grid(:)
type(grid_specification_record), public, pointer :: src_grid(:)
type(test_function_record), public, pointer :: testfunction(:)

Source Code

  type grid_record
     character(THARN_MAXSTR) :: filename   ! grid specifier filename
     integer :: nGspecs                   ! number of grid spec records
     type(grid_specification_record), pointer :: src_grid(:)
     type(grid_specification_record), pointer :: dst_grid(:)
     type(test_function_record), pointer ::  testfunction(:)
  end type grid_record