get_layer_count#

Stackup.get_layer_count(project, cca_name)#

Get the number of CCA layers in a stackup.

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

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

Returns:

The number of layers of the CCA in the project.

Return type:

int

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