get_part_location#

Parts.get_part_location(project, cca_name, ref_des, location_units)#

Return the location properties for one or more part.

Parameters:
  • project (str) – Name of the Sherlock project.

  • cca_name (str) – Name of the CCA.

  • ref_des (str) – Reference designator for specific part.

  • location_units (str) – Valid units for a part’s location.

Returns:

List of PartLocation objects.

Return type:

list

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="Test",
    cca_name="Card",
)
>>> part_locations = sherlock.parts.get_part_location(
    project="Tutorial",
    cca_name="Main Board",
    ref_des="C1,C2",
    location_units="in",
)
>>> print(f"{part_locations}")