itm.grid.data - Accessing data fields

The module :module:`itm.grid.data` contains the classes for working with data that is stored CPO fields using the general grid description.

itm.grid.base.ScalarData - Scalar data fields

Detailed class documentation for itm.grid.data.ScalarData

class itm.grid.data.ScalarData(cpo, data, path=None)[source]

Wraps a complexgrid_scalar data structure to provide high-level operations.

__init__(cpo, data, path=None)[source]
__str__()[source]
cpo[source]
data[source]
path[source]
grid[source]

Return grid for this data object.

subgrid_index[source]

Return subgrid index for this data object.

subgrid[source]

Return subgrid for this data object.

values[source]

Return the data for this scalar data field. Depending on the data representation a 1d, 2d or 3d numpy array is returned, with one value/vector/matrix per object in the associated subgrid.

values_for_objects(objs)[source]

Return values of this data object for a sequence of objects as 1d numpy array.

If for any of the object no data is available, None is returned.

__module__ = 'itm.grid.data'

itm.grid.base.ScalarData - Lists of scalar data fields

Detailed class documentation for itm.grid.data.ScalarDataList

class itm.grid.data.ScalarDataList(cpo, dataList, path=None)[source]

Wrap a list of complexgrid_scalar data structures to provide high-level operations.

__init__(cpo, dataList, path=None)[source]
__len__()[source]
__getitem__(key)[source]
__str__()[source]
cpo[source]
data_list[source]
path[source]
for_subgrid_index(sgInd)[source]
for_subgrid_id(sgId)[source]
values_for_objects(objs)[source]

Return data values for the given objects. If values for the objects are stored in multiple entries of the data list, the data from the first entry that can serve all objects is returned. If no data entry is found that can serve all objects, None is returned.

__module__ = 'itm.grid.data'