get_stackup_props#

Stackup.get_stackup_props(project, cca_name)#

Get the stackup properties from a CCA.

Available Since: 2021R2

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

  • cca_name (str) – str: Name of the CCA.

Return type:

StackupProperties

Returns:

:
StackupProperties

Object containing the properties of the stackup.

Examples

>>> from ansys.sherlock.core import launcher
>>> sherlock, install_dir = launcher.launch_and_connect(transport_mode="wnua")
>>> 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}")