ITM Grid Service Library: Fortran 90
|
Data Types | |
interface | assignment(=) |
type | gridobject |
interface | operator(.eq.) |
Public Member Functions | |
integer function, dimension(gridnspace(grid)) | gridgetmaxdimclass (grid) |
Get class descriptor for the highest-dimensional objects defined in this grid. (Depending on how the grid is defined, this is not necessarily the grid dimension.) | |
integer function | classdim (cls) |
Return the dimension of the objects of class cls. | |
type(gridobject) function | getobject (cls, ind) |
Return GridObject for given class and index tuple. | |
logical function | objectisnode (obj) |
Test whether the given object is a grid node (i.e. a zero-dimensional object) | |
logical function | objectsequal (objA, objB) |
Test whether two GridObject strucutres are equal, i.e. they describe the same grid object. | |
subroutine | objectassign (out, in) |
Assign one object variable to another object variable. Used to extend the assignment operator (=). | |
integer function | objectdim (obj) |
Return the dimension of an object. | |
integer function | gridnobject (grid, cls) |
Get the total number of objects of the given cls in the grid. | |
integer function | objectglobalindex (grid, object) |
Return the global index of an object. | |
type(GridObject) function | getobjectbyglobalindex (grid, cls, ind) |
TODO: rename to gridGetObjectByGlobalIndex. | |
subroutine | getcomposingobjects (grid, object, objlist) |
For a given object desriptor, retrieves a list that holds the object descriptors describing the lower-dimensional objects composing the given object. | |
subroutine | writeobjectlist (objs) |
Write a list of object descriptors to stdout. | |
subroutine | gridwritegridobject (obj) |
Write an object descriptor to stdout. |
Definition at line 1 of file itm_grid_object.f90.
integer function itm_grid_object::classdim | ( | integer, dimension(:), intent(in) | cls | ) |
Return the dimension of the objects of class cls.
Definition at line 46 of file itm_grid_object.f90.
subroutine itm_grid_object::getcomposingobjects | ( | type(type_complexgrid), intent(in) | grid, |
type(gridobject), intent(in) | object, | ||
type(gridobject), dimension(:), intent(out), allocatable | objlist | ||
) |
For a given object desriptor, retrieves a list that holds the object descriptors describing the lower-dimensional objects composing the given object.
Definition at line 183 of file itm_grid_object.f90.
type(gridobject) function itm_grid_object::getobject | ( | integer, dimension(:), intent(in) | cls, |
integer, dimension(:), intent(in) | ind | ||
) |
Return GridObject for given class and index tuple.
Definition at line 53 of file itm_grid_object.f90.
type(GridObject) function itm_grid_object::getobjectbyglobalindex | ( | type(type_complexgrid), intent(in) | grid, |
integer, dimension(gridnspace( grid )), intent(in) | cls, | ||
integer, intent(in) | ind | ||
) |
TODO: rename to gridGetObjectByGlobalIndex.
Definition at line 149 of file itm_grid_object.f90.
integer function, dimension( gridnspace( grid ) ) itm_grid_object::gridgetmaxdimclass | ( | type(type_complexgrid), intent(in) | grid | ) |
Get class descriptor for the highest-dimensional objects defined in this grid. (Depending on how the grid is defined, this is not necessarily the grid dimension.)
Definition at line 33 of file itm_grid_object.f90.
integer function itm_grid_object::gridnobject | ( | type(type_complexgrid), intent(in) | grid, |
integer, dimension( gridnspace( grid ) ), intent(in) | cls | ||
) |
Get the total number of objects of the given cls in the grid.
Definition at line 112 of file itm_grid_object.f90.
subroutine itm_grid_object::gridwritegridobject | ( | type(gridobject), intent(in) | obj | ) |
Write an object descriptor to stdout.
Definition at line 270 of file itm_grid_object.f90.
subroutine itm_grid_object::objectassign | ( | type(gridobject), intent(out) | out, |
type(gridobject), intent(in) | in | ||
) |
Assign one object variable to another object variable. Used to extend the assignment operator (=).
Note: one should not have to define this explicitly, as this should be the default behaviour of the compiler for allocatable components. However, the PGI compiler (v10) fails at this.
Definition at line 91 of file itm_grid_object.f90.
integer function itm_grid_object::objectdim | ( | type(gridobject), intent(in) | obj | ) |
Return the dimension of an object.
Definition at line 104 of file itm_grid_object.f90.
integer function itm_grid_object::objectglobalindex | ( | type(type_complexgrid), intent(in) | grid, |
type(gridobject), intent(in) | object | ||
) |
Return the global index of an object.
Definition at line 129 of file itm_grid_object.f90.
logical function itm_grid_object::objectisnode | ( | type(gridobject), intent(in) | obj | ) |
Test whether the given object is a grid node (i.e. a zero-dimensional object)
Definition at line 70 of file itm_grid_object.f90.
logical function itm_grid_object::objectsequal | ( | type(gridobject), intent(in) | objA, |
type(gridobject), intent(in) | objB | ||
) |
Test whether two GridObject strucutres are equal, i.e. they describe the same grid object.
Definition at line 78 of file itm_grid_object.f90.
subroutine itm_grid_object::writeobjectlist | ( | type(gridobject), dimension(:), intent(in) | objs | ) |
Write a list of object descriptors to stdout.
Definition at line 257 of file itm_grid_object.f90.