get_stackup_props#

Stackup.get_stackup_props(project, cca_name)#

Get the stackup properties from a CCA.

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

  • cca_name (str, required) – Name of the CCA.

Returns:

Object containing the properties of the stackup.

Return type:

StackupProperties

Example

>>> 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",
)
>>> stackup_props = sherlock.stackup.get_stackup_props(
       project="Tutorial",
       cca_name="Main Board"
    )
>>> print(f"{stackup_props}")