import_hdf5_composite_cae#
- Model.import_hdf5_composite_cae(path, import_mode='append', projection_mode='shell', minimum_angle_tolerance=0.001, recompute_reference_directions=False, shell_mapping_properties=ShellMappingProperties(all_elements=True, element_sets=(), relative_thickness_tolerance=0.5, relative_in_plane_tolerance=0.01, angle_tolerance=35.0, small_hole_threshold=0.0), solid_mapping_properties=SolidMappingProperties(offset_type=<OffsetType.BOTTOM_OFFSET: 'bottom_offset'>), coordinate_transformation=CoordinateTransformation(rotation_angle_x=0.0, rotation_angle_y=0.0, rotation_angle_z=0.0, translation_x=0.0, translation_y=0.0, translation_z=0.0))#
Import the lay-up from an HDF5 Composite CAE file.
- Parameters:
import_mode (HDF5CompositeCAEImportMode) – In
HDF5CompositeCAEImportMode.APPEND
mode, the imported objects are appended to existing layup. InHDF5CompositeCAEImportMode.OVERWRITE
mode, existing objects in the model with the same name are replaced if possible (not locked).projection_mode (HDF5CompositeCAEProjectionMode) – Determines whether loaded plies are mapped onto the reference surface (
HDF5CompositeCAEProjectionMode.SHELL
mode) or exposed as 3D plies (HDF5CompositeCAEProjectionMode.SOLID
mode).minimum_angle_tolerance (float) – Minimum angle tolerance for which tabular correction angles for plies are computed.
recompute_reference_directions (bool) – Whether reference directions should be recomputed from tabular angle data or not.
shell_mapping_properties (ShellMappingProperties) – Properties for mapping to the shell on importing HDF5 Composite CAE files. Used only if
projection_mode
is set to"shell"
.solid_mapping_properties (SolidMappingProperties) – Properties for importing HDF5 Composite CAE files as imported plies. Used only if
projection_mode
is set to"solid"
.coordinate_transformation (CoordinateTransformation) – Coordinate transformation applied to the imported lay-up.