ITM Grid Service Library: Fortran 90
|
Data Types | |
type | GridObject |
interface | OPERATOR(.eq.) |
interface | assignment(=) |
Functions/Subroutines | |
integer, 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 | classDim (cls) |
Return the dimension of the objects of class cls. | |
type(GridObject) | getObject (cls, ind) |
Return GridObject for given class and index tuple. | |
logical | objectIsNode (obj) |
Test whether the given object is a grid node (i.e. a zero-dimensional object) | |
logical | 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 | objectDim (obj) |
Return the dimension of an object. | |
integer | gridNObject (grid, cls) |
Get the total number of objects of the given cls in the grid. | |
integer | objectGlobalIndex (grid, object) |
Return the global index of an object. | |
type(GridObject) | 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. |
integer 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) 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) 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,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 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 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 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 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 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.