KratosMultiphysics
KRATOS Multiphysics (Kratos) is a framework for building parallel, multi-disciplinary simulation software, aiming at modularity, extensibility, and high performance. Kratos is written in C++, and counts with an extensive Python interface.
Public Member Functions | List of all members
core.xdmf.DataItem Class Reference

An abc for an XDMF DataItem (HDF5 data set). More...

Inheritance diagram for core.xdmf.DataItem:
Collaboration diagram for core.xdmf.DataItem:

Public Member Functions

def xml_tag (self)
 Return the XML tag for the XDMF item as a string. More...
 
def dimensions (self)
 Return a shape tuple of the HDF5 data set. More...
 
- Public Member Functions inherited from core.xdmf.XdmfItem
def create_xml_element (self)
 Return the XDMF item as an XML element node in the XML document tree. More...
 

Detailed Description

An abc for an XDMF DataItem (HDF5 data set).

The DataItem refers to the actual values which are physically stored in an
HDF5 data set.

Member Function Documentation

◆ dimensions()

def core.xdmf.DataItem.dimensions (   self)

Return a shape tuple of the HDF5 data set.

    For example the return value for the data set dset[0:100,0:3] would be
    (100, 3).

Reimplemented in core.xdmf.HDF5UniformDataItem.

◆ xml_tag()

def core.xdmf.DataItem.xml_tag (   self)

Return the XML tag for the XDMF item as a string.

    Every XML element is identified by a tag. Valid tags are specified by
    the XDMF model format.

Reimplemented from core.xdmf.XdmfItem.


The documentation for this class was generated from the following file: