ITM Grid Service Library: Fortran 90
|
Data Types | |
interface | gridStructWriteData |
interface | gridStructReadData |
Functions/Subroutines | |
subroutine | 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 | 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 | gridSetupStruct1dSpace (space, coordtype, nodes, periodic) |
Set up a 1d structured space. | |
logical | gridIsStructured (grid) |
Test whether the given grid descriptor contains a structured grid in the sense of this service module. | |
subroutine | gridStructGetAxes (grid, coordtype, gshape, x) |
Return the axes description of a structured grid. Essentially the equivalent read routine to gridSetupStructured. | |
subroutine | gridStructGetShape (grid, gshape) |
Return the shape (number of points in every dimension) of a structured grid. | |
type(GridObject) | gridStructGetCell (index) |
Return an object descriptor for a cell in an n-dimensional structured grid for the canonical coordinates given in index. | |
type(GridObject) | gridStructGetNode (index) |
Return a descriptor for a grid node with the given index. | |
type(GridObject) | 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) | 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 | gridStructWriteData1d (grid, cpofield, subgrid, data) |
subroutine | gridStructWriteData2d (grid, cpofield, subgrid, data) |
subroutine | gridStructWriteData3d (grid, cpofield, subgrid, data) |
subroutine | gridStructWriteData4d (grid, cpofield, subgrid, data) |
subroutine | gridStructWriteData5d (grid, cpofield, subgrid, data) |
subroutine | gridStructWriteData6d (grid, cpofield, subgrid, data) |
subroutine | gridStructReadDataBody (grid, cpofield, subgrid, gshape) |
Body of the data read routine for data arrays with arbitrary rank. | |
subroutine | gridStructReadData1d (grid, cpofield, subgrid, data) |
subroutine | gridStructReadData2d (grid, cpofield, subgrid, data) |
subroutine | gridStructReadData3d (grid, cpofield, subgrid, data) |
subroutine | gridStructReadData4d (grid, cpofield, subgrid, data) |
subroutine | gridStructReadData5d (grid, cpofield, subgrid, data) |
subroutine | gridStructReadData6d (grid, cpofield, subgrid, data) |
subroutine | gridSetupStructuredCurvilinear3d (grid, coordtype, x, y, z, id, createSubgrids) |
Variables | |
integer, parameter | GRID_STRUCT_SUBGRID_0D = 1 |
Definition of default subgrids. | |
integer, parameter | GRID_STRUCT_SUBGRID_1D = 2 |
integer, parameter | GRID_STRUCT_SUBGRID_2D = 3 |
integer, parameter | GRID_STRUCT_SUBGRID_3D = 4 |
integer, parameter | GRID_STRUCT_SUBGRID_4D = 5 |
integer, parameter | GRID_STRUCT_SUBGRID_5D = 6 |
integer, parameter | GRID_STRUCT_SUBGRID_6D = 7 |
integer, parameter | GRID_STRUCT_NODES = GRID_STRUCT_SUBGRID_0D |
integer, parameter | GRID_STRUCT_EDGES = GRID_STRUCT_SUBGRID_1D |
integer, parameter | GRID_STRUCT_FACES = GRID_STRUCT_SUBGRID_2D |
integer, parameter | GRID_STRUCT_CELLS = GRID_STRUCT_SUBGRID_3D |
logical itm_grid_structured::gridIsStructured | ( | type(type_complexgrid),intent(in) | grid | ) |
Test whether the given grid descriptor contains a structured grid in the sense of this service module.
Definition at line 372 of file itm_grid_structured.f90.
subroutine itm_grid_structured::gridSetupStruct1dSpace | ( | type(type_complexgrid_space),dimension (assumed to be in increasing order),intent(in) | space, |
integer,intent(in) | coordtype, | ||
real(R8),dimension(:),intent(in) | nodes, | ||
logical,intent(in),optional | periodic | ||
) |
Set up a 1d structured space.
Helper routine used by gridSetupStructured. Sets up a space descriptor for the case of a simple 1d structured grid with standard connectivity
Definition at line 271 of file itm_grid_structured.f90.
subroutine itm_grid_structured::gridSetupStructured | ( | type(type_complexgrid),intent(out) | grid, |
integer,dimension(:),intent(in) | coordtype, | ||
integer,dimension(size(coordtype)),intent(in) | gshape, | ||
real(R8),dimension(:, :),intent(in) | x, | ||
character(*),intent(in),optional | id, | ||
logical,intent(in),optional | createSubgrids, | ||
integer,dimension(:),intent(in),optional | periodicSpaces, | ||
integer,intent(in),optional | uid, | ||
logical,intent(in),optional | computeMeasures | ||
) |
Write a n-dimensional structured grid into a grid descriptor, as well as the default subgrids for objects of all dimensions.
The dimension n of the grid is taken as size(coordtype).
grid | Grid descriptor to fill |
coordtype | Dimension(n). Defines coordinate types / labels for the individual axes. See the constants defined in itm_grid.f90 (COORDTYPE_*) |
gshape | Dimension(n). Shape of the grid. In dimension i the grid has shape(i) grid points. |
x | Dimension( maxval( gshape(n) ), n ). Grid node coordinates in the individual dimensions. The node positions in space i are given by x( 1 : gshape( i ), id ). |
createSubgrids | Optional flag controlling whether default subgrids are created. Default is .true. |
periodicSpaces | Optional integer array containing the indices of the coordinate directions that are periodic. This will result in the last node in these coordinate directions to be connected to the first node by an edge. Note that if periodic spaces are present, no metric information is computed. |
uid | A unique identifier number for the |
Definition at line 73 of file itm_grid_structured.f90.
subroutine itm_grid_structured::gridSetupStructuredCurvilinear3d | ( | type(type_complexgrid),intent(out) | grid, |
integer,dimension(3),intent(in) | coordtype, | ||
real(R8),dimension(:,:,:),intent(in) | x, | ||
real(R8),dimension(:,:,:),intent(in) | y, | ||
real(R8),dimension(:,:,:),intent(in) | z, | ||
character(*),intent(in),optional | id, | ||
logical,intent(in),optional | createSubgrids | ||
) |
Definition at line 685 of file itm_grid_structured.f90.
subroutine itm_grid_structured::gridSetupStructuredSep | ( | type(type_complexgrid),intent(out) | grid, |
integer,intent(in) | ndim, | ||
integer,intent(in) | c1, | ||
real(R8),dimension(:),intent(in) | x1, | ||
integer,intent(in),optional | c2, | ||
real(R8),dimension(:),intent(in),optional | x2, | ||
integer,intent(in),optional | c3, | ||
real(R8),dimension(:),intent(in),optional | x3, | ||
integer,intent(in),optional | c4, | ||
real(R8),dimension(:),intent(in),optional | x4, | ||
integer,intent(in),optional | c5, | ||
real(R8),dimension(:),intent(in),optional | x5, | ||
integer,intent(in),optional | c6, | ||
real(R8),dimension(:),intent(in),optional | x6, | ||
character(*),intent(in),optional | id, | ||
logical,intent(in),optional | createSubgrids, | ||
integer,dimension(:),intent(in),optional | periodicSpaces, | ||
integer,intent(in),optional | uid, | ||
logical,intent(in),optional | computeMeasures | ||
) |
Write a n-dimensional structured grid into a grid descriptor (alternate version with separate dimension vectors)
Alternate wrapper for gridSetupStructured, which makes it easier to give the node positions as individual arrays
Definition at line 173 of file itm_grid_structured.f90.
subroutine itm_grid_structured::gridStructGetAxes | ( | type(type_complexgrid),intent(in) | grid, |
integer,dimension(:),intent(out),allocatable | coordtype, | ||
integer,dimension(:),intent(out),allocatable | gshape, | ||
real(R8),dimension(:,:),intent(out),allocatable | x | ||
) |
Return the axes description of a structured grid. Essentially the equivalent read routine to gridSetupStructured.
grid | The grid descriptor to read from |
coordtype | The coordinate types of the individual axes/spaces |
gshape | Number of grid nodes on the individual axes/spaces |
x | The position of the grid nodes. x(i,s) is the position of node i in space s. All nodes in space s are given by x( 1:gshape(s), s ) |
Definition at line 401 of file itm_grid_structured.f90.
type(GridObject) itm_grid_structured::gridStructGetCell | ( | integer,dimension(:),intent(in) | index | ) |
Return an object descriptor for a cell in an n-dimensional structured grid for the canonical coordinates given in index.
Index | of the cell (=indices of the composing faces) |
Definition at line 465 of file itm_grid_structured.f90.
type(GridObject) itm_grid_structured::gridStructGetEdge | ( | integer,dimension(:),intent(in) | index, |
integer,intent(in) | 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.
index | Index of starting node of the edge |
dim | Index of the dimension along which the edge is aligned |
Definition at line 503 of file itm_grid_structured.f90.
type(GridObject) itm_grid_structured::gridStructGetFace | ( | integer,dimension(:),intent(in) | index, |
integer,dimension(2),intent(in) | 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.
index | Index of lower-right node. |
dims | The dimensions along which the face extends |
Definition at line 525 of file itm_grid_structured.f90.
type(GridObject) itm_grid_structured::gridStructGetNode | ( | integer,dimension(:),intent(in) | index | ) |
Return a descriptor for a grid node with the given index.
index | Index of the grid node |
Definition at line 482 of file itm_grid_structured.f90.
subroutine itm_grid_structured::gridStructGetShape | ( | type(type_complexgrid),intent(in) | grid, |
integer,dimension(:),intent(out),allocatable | gshape | ||
) |
Return the shape (number of points in every dimension) of a structured grid.
grid | The grid descriptor to read from |
gshape | Number of grid nodes on the individual axes/spaces |
Definition at line 437 of file itm_grid_structured.f90.
subroutine itm_grid_structured::gridStructReadData1d | ( | type(type_complexgrid),intent(in) | grid, |
type(type_complexgrid_scalar),intent(in) | cpofield, | ||
integer,intent(in) | subgrid, | ||
real(R8),dimension(:),intent(out) | data | ||
) |
Definition at line 622 of file itm_grid_structured.f90.
subroutine itm_grid_structured::gridStructReadData2d | ( | type(type_complexgrid),intent(in) | grid, |
type(type_complexgrid_scalar),intent(in) | cpofield, | ||
integer,intent(in) | subgrid, | ||
real(R8),dimension(:,:),intent(out) | data | ||
) |
Definition at line 632 of file itm_grid_structured.f90.
subroutine itm_grid_structured::gridStructReadData3d | ( | type(type_complexgrid),intent(in) | grid, |
type(type_complexgrid_scalar),intent(in) | cpofield, | ||
integer,intent(in) | subgrid, | ||
real(R8),dimension(:,:,:),intent(out) | data | ||
) |
Definition at line 642 of file itm_grid_structured.f90.
subroutine itm_grid_structured::gridStructReadData4d | ( | type(type_complexgrid),intent(in) | grid, |
type(type_complexgrid_scalar),intent(in) | cpofield, | ||
integer,intent(in) | subgrid, | ||
real(R8),dimension(:,:,:,:),intent(out) | data | ||
) |
Definition at line 652 of file itm_grid_structured.f90.
subroutine itm_grid_structured::gridStructReadData5d | ( | type(type_complexgrid),intent(in) | grid, |
type(type_complexgrid_scalar),intent(in) | cpofield, | ||
integer,intent(in) | subgrid, | ||
real(R8),dimension(:,:,:,:,:),intent(out) | data | ||
) |
Definition at line 662 of file itm_grid_structured.f90.
subroutine itm_grid_structured::gridStructReadData6d | ( | type(type_complexgrid),intent(in) | grid, |
type(type_complexgrid_scalar),intent(in) | cpofield, | ||
integer,intent(in) | subgrid, | ||
real(R8),dimension(:,:,:,:,:,:),intent(out) | data | ||
) |
Definition at line 672 of file itm_grid_structured.f90.
subroutine itm_grid_structured::gridStructReadDataBody | ( | type(type_complexgrid),intent(in) | grid, |
type(type_complexgrid_scalar),intent(in) | cpofield, | ||
integer,intent(in) | subgrid, | ||
integer,dimension(:),intent(in) | gshape | ||
) |
Body of the data read routine for data arrays with arbitrary rank.
Definition at line 599 of file itm_grid_structured.f90.
subroutine itm_grid_structured::gridStructWriteData1d | ( | type(type_complexgrid),intent(in) | grid, |
type(type_complexgrid_scalar),intent(inout) | cpofield, | ||
integer,intent(in) | subgrid, | ||
real(R8),dimension(:),intent(in) | data | ||
) |
Definition at line 542 of file itm_grid_structured.f90.
subroutine itm_grid_structured::gridStructWriteData2d | ( | type(type_complexgrid),intent(in) | grid, |
type(type_complexgrid_scalar),intent(inout) | cpofield, | ||
integer,intent(in) | subgrid, | ||
real(R8),dimension(:,:),intent(in) | data | ||
) |
Definition at line 551 of file itm_grid_structured.f90.
subroutine itm_grid_structured::gridStructWriteData3d | ( | type(type_complexgrid),intent(in) | grid, |
type(type_complexgrid_scalar),intent(inout) | cpofield, | ||
integer,intent(in) | subgrid, | ||
real(R8),dimension(:,:,:),intent(in) | data | ||
) |
Definition at line 560 of file itm_grid_structured.f90.
subroutine itm_grid_structured::gridStructWriteData4d | ( | type(type_complexgrid),intent(in) | grid, |
type(type_complexgrid_scalar),intent(inout) | cpofield, | ||
integer,intent(in) | subgrid, | ||
real(R8),dimension(:,:,:,:),intent(in) | data | ||
) |
Definition at line 569 of file itm_grid_structured.f90.
subroutine itm_grid_structured::gridStructWriteData5d | ( | type(type_complexgrid),intent(in) | grid, |
type(type_complexgrid_scalar),intent(inout) | cpofield, | ||
integer,intent(in) | subgrid, | ||
real(R8),dimension(:,:,:,:,:),intent(in) | data | ||
) |
Definition at line 578 of file itm_grid_structured.f90.
subroutine itm_grid_structured::gridStructWriteData6d | ( | type(type_complexgrid),intent(in) | grid, |
type(type_complexgrid_scalar),intent(inout) | cpofield, | ||
integer,intent(in) | subgrid, | ||
real(R8),dimension(:,:,:,:,:,:),intent(in) | data | ||
) |
Definition at line 587 of file itm_grid_structured.f90.
integer,parameter itm_grid_structured::GRID_STRUCT_CELLS = GRID_STRUCT_SUBGRID_3D |
Definition at line 31 of file itm_grid_structured.f90.
integer,parameter itm_grid_structured::GRID_STRUCT_EDGES = GRID_STRUCT_SUBGRID_1D |
Definition at line 29 of file itm_grid_structured.f90.
integer,parameter itm_grid_structured::GRID_STRUCT_FACES = GRID_STRUCT_SUBGRID_2D |
Definition at line 30 of file itm_grid_structured.f90.
integer,parameter itm_grid_structured::GRID_STRUCT_NODES = GRID_STRUCT_SUBGRID_0D |
Definition at line 28 of file itm_grid_structured.f90.
integer,parameter itm_grid_structured::GRID_STRUCT_SUBGRID_0D = 1 |
Definition of default subgrids.
Definition at line 19 of file itm_grid_structured.f90.
integer,parameter itm_grid_structured::GRID_STRUCT_SUBGRID_1D = 2 |
Definition at line 20 of file itm_grid_structured.f90.
integer,parameter itm_grid_structured::GRID_STRUCT_SUBGRID_2D = 3 |
Definition at line 21 of file itm_grid_structured.f90.
integer,parameter itm_grid_structured::GRID_STRUCT_SUBGRID_3D = 4 |
Definition at line 22 of file itm_grid_structured.f90.
integer,parameter itm_grid_structured::GRID_STRUCT_SUBGRID_4D = 5 |
Definition at line 23 of file itm_grid_structured.f90.
integer,parameter itm_grid_structured::GRID_STRUCT_SUBGRID_5D = 6 |
Definition at line 24 of file itm_grid_structured.f90.
integer,parameter itm_grid_structured::GRID_STRUCT_SUBGRID_6D = 7 |
Definition at line 25 of file itm_grid_structured.f90.