grid_record Derived Type

type, public :: grid_record


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