WRApplication
External kratos "application" for multiscale time integration.
|
Classes | |
class | HDF5CoordinateDataItem |
Functions | |
TryOpenH5File (name, mode=None, driver=None, **kwds) | |
A context manager wrapper for the opened file. | |
RenumberConnectivitiesForXdmf (filename_or_list_of_filenames, h5path_to_mesh) | |
Renumber mesh connectivities for XDMF. | |
None | GetListOfSpatialGrids ("list[list[str]]" spatial_grids_list, h5py.Group h5_model_part, str current_path) |
CreateXdmfSpatialGrid (h5_model_part) | |
Return an XDMF Grid object corresponding to a mesh in an HDF5 file. | |
Has_dtype (item) | |
XdmfNodalResults (h5_results) | |
Return a list of XDMF Attribute objects for nodal results in an HDF5 file. | |
XdmfNodalFlags (h5_results) | |
Return a list of XDMF Attribute objects for nodal flags in an HDF5 file. | |
XdmfElementResults (h5_results) | |
Return a list of XDMF Attribute objects for element results in an HDF5 file. | |
XdmfElementFlags (h5_results) | |
Return a list of XDMF Attribute objects for element flags in an HDF5 file. | |
XdmfElementGaussPointValues (h5_results) | |
Return a list of XDMF Attribute objects for element integration point values in an HDF5 file. | |
XdmfConditionResults (h5_results) | |
Return a list of XDMF Attribute objects for element results in an HDF5 file. | |
XdmfConditionFlags (h5_results) | |
Return a list of XDMF Attribute objects for element flags in an HDF5 file. | |
XdmfConditionGaussPointValues (h5_results) | |
Return a list of XDMF Attribute objects for element integration point values in an HDF5 file. | |
XdmfResults (h5py.Group h5_results) | |
Return a list of XDMF Attribute objects for results in an HDF5 file. | |
TimeLabel (file_path) | |
Return the time string from the file name. | |
TimeFromFileName (file_path) | |
Return the time value for the file name. | |
FindMatchingFiles (pattern) | |
Return a list of HDF5 files matching the given file name pattern. | |
GetSortedListOfFiles (pattern) | |
Return sorted file list based on the time stamp. | |
GetStep (value, patterns) | |
GetMatchingGroupNames (output_dict, value, patterns, pattern_with_wildcards) | |
WriteMultifileTemporalAnalysisToXdmf (ospath, h5path_to_mesh, h5path_to_results) | |
Write XDMF metadata for a temporal analysis from multiple HDF5 files. | |
CreateXdmfTemporalGridFromSinglefile (h5_file_name, h5path_pattern_to_mesh, h5path_pattern_to_results, bool require_results=False) | |
Return an XDMF Grid object for a list of temporal results in a single HDF5 file. | |
WriteSinglefileTemporalAnalysisToXdmf (h5_file_name, h5path_pattern_to_mesh, h5path_pattern_to_results, bool require_results=False) | |
Write XDMF metadata for a temporal analysis from single HDF5 file. | |
Variables | |
str | warn_msg = "h5py module was not found!" |
CreateXdmfSpatialGrid | ( | h5_model_part | ) |
Return an XDMF Grid object corresponding to a mesh in an HDF5 file.
Keyword arguments: h5_model_part – the HDF5 group containing the model part
Expects:
See:
CreateXdmfTemporalGridFromSinglefile | ( | h5_file_name, | |
h5path_pattern_to_mesh, | |||
h5path_pattern_to_results, | |||
bool | require_results = False |
||
) |
Return an XDMF Grid object for a list of temporal results in a single HDF5 file.
Keyword arguments: h5_file_name – the HDF5 file to be parsed h5path_pattern_to_mesh – the internal HDF5 file path pattern to the mesh [ only <step> flag is supported ] h5path_pattern_to_results – the internal HDF5 file path pattern to the results [ only <step> flag is supported ]
Expects:
FindMatchingFiles | ( | pattern | ) |
Return a list of HDF5 files matching the given file name pattern.
For example, "./sim/kratos" matches:
None GetListOfSpatialGrids | ( | "list[list[str]]" | spatial_grids_list, |
h5py.Group | h5_model_part, | ||
str | current_path | ||
) |
GetMatchingGroupNames | ( | output_dict, | |
value, | |||
patterns, | |||
pattern_with_wildcards | |||
) |
GetSortedListOfFiles | ( | pattern | ) |
Return sorted file list based on the time stamp.
see @FindMatchingFiles
GetStep | ( | value, | |
patterns | |||
) |
Has_dtype | ( | item | ) |
RenumberConnectivitiesForXdmf | ( | filename_or_list_of_filenames, | |
h5path_to_mesh | |||
) |
Renumber mesh connectivities for XDMF.
Keyword arguments: filename_or_list_of_filenames – the HDF5 file(s) to renumber h5path_to_mesh – the internal HDF5 file path to the mesh
The mesh connectivities must be renumbered for XDMF by the node's array index rather than its ID. The renumbered connectivities are stored in HDF5 and referenced by the XDMF Grid. If a file cannot be opened, it is skipped.
See:
TimeFromFileName | ( | file_path | ) |
Return the time value for the file name.
If the file name contains no time value, zero time value is assumed.
TimeLabel | ( | file_path | ) |
Return the time string from the file name.
E.g.: 'kratos-123.h5' -> '123' 'kratos-1.2.h5' -> '1.2' 'kratos-1.2e+00.h5' -> '1.2e+00'
Returns empty string if not found.
TryOpenH5File | ( | name, | |
mode = None , |
|||
driver = None , |
|||
** | kwds | ||
) |
A context manager wrapper for the opened file.
In case the file cannot be opened, yield None rather than raise an exception. This can be the case if the file is already opened.
WriteMultifileTemporalAnalysisToXdmf | ( | ospath, | |
h5path_to_mesh, | |||
h5path_to_results | |||
) |
Write XDMF metadata for a temporal analysis from multiple HDF5 files.
Keyword arguments: ospath – path to one of the HDF5 files or the corresponding XDMF output file. h5path_to_mesh – the internal HDF5 file path to the mesh h5path_to_results – the internal HDF5 file path to the results
WriteSinglefileTemporalAnalysisToXdmf | ( | h5_file_name, | |
h5path_pattern_to_mesh, | |||
h5path_pattern_to_results, | |||
bool | require_results = False |
||
) |
Write XDMF metadata for a temporal analysis from single HDF5 file.
Keyword arguments: h5_file_name – hdf5 filename h5path_pattern_to_mesh – the internal HDF5 file path pattern to the mesh [ only <step> flag is supported ] h5path_to_results – the internal HDF5 file path pattern to the results [ only <step> flag is supported ]
XdmfConditionFlags | ( | h5_results | ) |
Return a list of XDMF Attribute objects for element flags in an HDF5 file.
Keyword arguments: h5_flags – the HDF5 group containing the flags
Checks for flags stored by variable name in:
If no flags are found, returns an empty list.
See:
XdmfConditionGaussPointValues | ( | h5_results | ) |
Return a list of XDMF Attribute objects for element integration point values in an HDF5 file.
Keyword arguments: h5_results – the HDF5 group containing the results
Checks for results stored by variable name in:
If no results are found, returns an empty list.
See:
XdmfConditionResults | ( | h5_results | ) |
Return a list of XDMF Attribute objects for element results in an HDF5 file.
Keyword arguments: h5_results – the HDF5 group containing the results
Checks for results stored by variable name in:
If no results are found, returns an empty list.
See:
XdmfElementFlags | ( | h5_results | ) |
Return a list of XDMF Attribute objects for element flags in an HDF5 file.
Keyword arguments: h5_flags – the HDF5 group containing the flags
Checks for flags stored by variable name in:
If no flags are found, returns an empty list.
See:
XdmfElementGaussPointValues | ( | h5_results | ) |
Return a list of XDMF Attribute objects for element integration point values in an HDF5 file.
Keyword arguments: h5_results – the HDF5 group containing the results
Checks for results stored by variable name in:
If no results are found, returns an empty list.
See:
XdmfElementResults | ( | h5_results | ) |
Return a list of XDMF Attribute objects for element results in an HDF5 file.
Keyword arguments: h5_results – the HDF5 group containing the results
Checks for results stored by variable name in:
If no results are found, returns an empty list.
See:
XdmfNodalFlags | ( | h5_results | ) |
Return a list of XDMF Attribute objects for nodal flags in an HDF5 file.
Keyword arguments: h5_results – the HDF5 group containing the flags
Checks for flags stored in data sets by variable name in:
Expects:
If no flags are found, returns an empty list.
See:
XdmfNodalResults | ( | h5_results | ) |
Return a list of XDMF Attribute objects for nodal results in an HDF5 file.
Keyword arguments: h5_results – the HDF5 group containing the results
Checks for results stored in data sets by variable name in:
Expects:
If no results are found, returns an empty list.
See:
XdmfResults | ( | h5py.Group | h5_results | ) |
Return a list of XDMF Attribute objects for results in an HDF5 file.
Keyword arguments: h5_results – the HDF5 group containing the results
str warn_msg = "h5py module was not found!" |