import_odb_archive#
- Project.import_odb_archive(archive_file, process_layer_thickness, include_other_layers, process_cutout_file, guess_part_properties, project=None, cca_name=None)#
Import an ODB++ archive file.
- Parameters:
archive_file (str) – Full path to the ODB++ archive file.
process_layer_thickness (bool) – Whether to assign stackup thickness.
include_other_layers (bool) – Whether to include other layers.
process_cutout_file (bool) – Whether to process cutouts.
guess_part_properties (bool) – Whether to guess part properties.
project (str, optional) – Name of the Sherlock project. The default is
None
, in which case the name of the ODB++ archive file is used for the project name.cca_name (str, optional) – Name of the CCA name. The default is
None
, in which case the name of the ODB++ archive file is used for the CCA name.
- Returns:
Status code of the response. 0 for success.
- Return type:
int
Examples
>>> from ansys.sherlock.core.launcher import launch_sherlock >>> sherlock = launch_sherlock() >>> sherlock.project.import_odb_archive("ODB++ Tutorial.tgz", True, True, True, True, project="Tutorial", cca_name="Card")