get_layer_count#

Stackup.get_layer_count(project, cca_name)#

Get the number of CCA layers in a stackup.

Available Since: 2021R2

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

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

Return type:

int

Returns:

:
int

The number of layers of the CCA in the project.

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",
>>> )
>>> conductor_layer_count = sherlock.stackup.get_layer_count(
>>>    project="Test",
>>>    cca_name="Card"
>>> )
>>> print(f"{conductor_layer_count}")