ITM Grid Service Library: Fortran 90
|
Go to the source code of this file.
Data Types | |
interface | itm_grid_structured::gridStructWriteData |
interface | itm_grid_structured::gridStructReadData |
Modules | |
module | itm_grid_structured |
Functions/Subroutines | |
subroutine | itm_grid_structured::gridSetupStructured (grid, coordtype, gshape, x, id, createSubgrids, periodicSpaces, uid, computeMeasures) |
Write a n-dimensional structured grid into a grid descriptor, as well as the default subgrids for objects of all dimensions. | |
subroutine | itm_grid_structured::gridSetupStructuredSep (grid, ndim, c1, x1, c2, x2, c3, x3, c4, x4, c5, x5, c6, x6, id, createSubgrids, periodicSpaces, uid, computeMeasures) |
Write a n-dimensional structured grid into a grid descriptor (alternate version with separate dimension vectors) | |
subroutine | itm_grid_structured::gridSetupStruct1dSpace (space, coordtype, nodes, periodic) |
Set up a 1d structured space. | |
logical | itm_grid_structured::gridIsStructured (grid) |
Test whether the given grid descriptor contains a structured grid in the sense of this service module. | |
subroutine | itm_grid_structured::gridStructGetAxes (grid, coordtype, gshape, x) |
Return the axes description of a structured grid. Essentially the equivalent read routine to gridSetupStructured. | |
subroutine | itm_grid_structured::gridStructGetShape (grid, gshape) |
Return the shape (number of points in every dimension) of a structured grid. | |
type(GridObject) | itm_grid_structured::gridStructGetCell (index) |
Return an object descriptor for a cell in an n-dimensional structured grid for the canonical coordinates given in index. | |
type(GridObject) | itm_grid_structured::gridStructGetNode (index) |
Return a descriptor for a grid node with the given index. | |
type(GridObject) | itm_grid_structured::gridStructGetEdge (index, dim) |
Return a descriptor for an (one-dimensional) edge, the start point of which is given by node with the given index and which extends to the next point in the increasing coordinate direction of dimension dim. | |
type(GridObject) | itm_grid_structured::gridStructGetFace (index, dims) |
Return a descriptor for a (two-dimensional) face. The lower-right node of the face is given by index, and the face extends along the two coordinate directions given in dims. | |
subroutine | itm_grid_structured::gridStructWriteData1d (grid, cpofield, subgrid, data) |
subroutine | itm_grid_structured::gridStructWriteData2d (grid, cpofield, subgrid, data) |
subroutine | itm_grid_structured::gridStructWriteData3d (grid, cpofield, subgrid, data) |
subroutine | itm_grid_structured::gridStructWriteData4d (grid, cpofield, subgrid, data) |
subroutine | itm_grid_structured::gridStructWriteData5d (grid, cpofield, subgrid, data) |
subroutine | itm_grid_structured::gridStructWriteData6d (grid, cpofield, subgrid, data) |
subroutine | itm_grid_structured::gridStructReadDataBody (grid, cpofield, subgrid, gshape) |
Body of the data read routine for data arrays with arbitrary rank. | |
subroutine | itm_grid_structured::gridStructReadData1d (grid, cpofield, subgrid, data) |
subroutine | itm_grid_structured::gridStructReadData2d (grid, cpofield, subgrid, data) |
subroutine | itm_grid_structured::gridStructReadData3d (grid, cpofield, subgrid, data) |
subroutine | itm_grid_structured::gridStructReadData4d (grid, cpofield, subgrid, data) |
subroutine | itm_grid_structured::gridStructReadData5d (grid, cpofield, subgrid, data) |
subroutine | itm_grid_structured::gridStructReadData6d (grid, cpofield, subgrid, data) |
subroutine | itm_grid_structured::gridSetupStructuredCurvilinear3d (grid, coordtype, x, y, z, id, createSubgrids) |
Variables | |
integer, parameter | itm_grid_structured::GRID_STRUCT_SUBGRID_0D = 1 |
Definition of default subgrids. | |
integer, parameter | itm_grid_structured::GRID_STRUCT_SUBGRID_1D = 2 |
integer, parameter | itm_grid_structured::GRID_STRUCT_SUBGRID_2D = 3 |
integer, parameter | itm_grid_structured::GRID_STRUCT_SUBGRID_3D = 4 |
integer, parameter | itm_grid_structured::GRID_STRUCT_SUBGRID_4D = 5 |
integer, parameter | itm_grid_structured::GRID_STRUCT_SUBGRID_5D = 6 |
integer, parameter | itm_grid_structured::GRID_STRUCT_SUBGRID_6D = 7 |
integer, parameter | itm_grid_structured::GRID_STRUCT_NODES = GRID_STRUCT_SUBGRID_0D |
integer, parameter | itm_grid_structured::GRID_STRUCT_EDGES = GRID_STRUCT_SUBGRID_1D |
integer, parameter | itm_grid_structured::GRID_STRUCT_FACES = GRID_STRUCT_SUBGRID_2D |
integer, parameter | itm_grid_structured::GRID_STRUCT_CELLS = GRID_STRUCT_SUBGRID_3D |