ITM Grid Service Library: Fortran 90
|
Public Member Functions | |
subroutine | createsubgrid (sg, nobjlist, id) |
Create a subgrid for a given number of object lists. | |
subroutine | createsubgridforclass (grid, sg, cls, id) |
Convenience routine: create a subgrid for one specific object class. | |
subroutine | createsubgridforclasses (grid, sg, classes, id) |
Convenience routine: create a subgrid for a list of object classes. | |
subroutine | createsubgridforexplicitlist (grid, sg, cls, indlist, id) |
Convenience routine: create a subgrid for an explicit object list. | |
integer function | gridnsubgrid (grid) |
Return number of subgrids in the grid. | |
integer function | gridfindsubgridbyname (grid, name) |
Returns the subgrid index for the subgrid with this name If none found, returns GRID_UNDEFINED. | |
integer function | gridsubgridsize (sg) |
Return the number of objects in the subgrid. | |
type(GridObject) function | subgridgetobject (sg, iobj) |
Return the object with index iobj according to the implicit object ordering of the subgrid. | |
integer function | subgridgetindexforobject (sg, obj) |
Return the local index of the given object in the subgrid, according to the implicit object ordering of the subgrid. | |
subroutine | gridcreatedefaultsubgrids (grid, id) |
Add a default set of subgrids for a grid. One subgrid is added for every dimension for which objects exist in the grid. This subgrid will contain all objects of that dimension in the canonical implicit ordering. |
Definition at line 1 of file itm_grid_subgrid.f90.
subroutine itm_grid_subgrid::createsubgrid | ( | type(type_complexgrid_subgrid), intent(out) | sg, |
integer, intent(in) | nobjlist, | ||
character(*), intent(in), optional | id | ||
) |
Create a subgrid for a given number of object lists.
Definition at line 21 of file itm_grid_subgrid.f90.
subroutine itm_grid_subgrid::createsubgridforclass | ( | type(type_complexgrid), intent(in) | grid, |
type(type_complexgrid_subgrid), intent(out) | sg, | ||
integer, dimension(gridnspace(grid)), intent(in) | cls, | ||
character(*), intent(in), optional | id | ||
) |
Convenience routine: create a subgrid for one specific object class.
Definition at line 41 of file itm_grid_subgrid.f90.
subroutine itm_grid_subgrid::createsubgridforclasses | ( | type(type_complexgrid), intent(in) | grid, |
type(type_complexgrid_subgrid), intent(out) | sg, | ||
integer, dimension(:,:), intent(in) | classes, | ||
character(*), intent(in), optional | id | ||
) |
Convenience routine: create a subgrid for a list of object classes.
classes | The list of object class. First index: class index, second index: space index, i.e. classes(i,:) is the ith object class tuple. |
Definition at line 55 of file itm_grid_subgrid.f90.
subroutine itm_grid_subgrid::createsubgridforexplicitlist | ( | type(type_complexgrid), intent(in) | grid, |
type(type_complexgrid_subgrid), intent(out) | sg, | ||
integer, dimension(gridnspace(grid)), intent(in) | cls, | ||
integer, dimension(:,:), intent(in) | indlist, | ||
character(*), intent(in), optional | id | ||
) |
Convenience routine: create a subgrid for an explicit object list.
Definition at line 75 of file itm_grid_subgrid.f90.
subroutine itm_grid_subgrid::gridcreatedefaultsubgrids | ( | type(type_complexgrid), intent(inout) | grid, |
character(*), intent(in), optional | id | ||
) |
Add a default set of subgrids for a grid. One subgrid is added for every dimension for which objects exist in the grid. This subgrid will contain all objects of that dimension in the canonical implicit ordering.
Definition at line 186 of file itm_grid_subgrid.f90.
integer function itm_grid_subgrid::gridfindsubgridbyname | ( | type(type_complexgrid), intent(in) | grid, |
character(*), intent(in) | name | ||
) |
Returns the subgrid index for the subgrid with this name If none found, returns GRID_UNDEFINED.
Definition at line 100 of file itm_grid_subgrid.f90.
integer function itm_grid_subgrid::gridnsubgrid | ( | type(type_complexgrid), intent(in) | grid | ) |
Return number of subgrids in the grid.
Definition at line 89 of file itm_grid_subgrid.f90.
integer function itm_grid_subgrid::gridsubgridsize | ( | type(type_complexgrid_subgrid), intent(in) | sg | ) |
Return the number of objects in the subgrid.
Definition at line 121 of file itm_grid_subgrid.f90.
integer function itm_grid_subgrid::subgridgetindexforobject | ( | type(type_complexgrid_subgrid), intent(in) | sg, |
type(gridobject), intent(in) | obj | ||
) |
Return the local index of the given object in the subgrid, according to the implicit object ordering of the subgrid.
Definition at line 158 of file itm_grid_subgrid.f90.
type(GridObject) function itm_grid_subgrid::subgridgetobject | ( | type(type_complexgrid_subgrid), intent(in) | sg, |
integer, intent(in) | iobj | ||
) |
Return the object with index iobj according to the implicit object ordering of the subgrid.
Definition at line 135 of file itm_grid_subgrid.f90.