list_thermal_maps#

Project.list_thermal_maps(project, cca_names=None)#

List the thermal map files and their type assigned to each CCA of given CCAs.

Available Since: 2024R2

Parameters:
project: str

Name of the Sherlock project.

cca_names: List of str, optional

List of CCA names to provide thermal maps for. The default is None, in which case all CCAs in the project are returned.

Returns:
:
list

All thermal map files or thermal map files and their type for the specified CCAs.

Return type:

list

Examples

>>> from ansys.sherlock.core.launcher import launch_sherlock
>>> sherlock = launch_sherlock()
>>> thermal_maps = sherlock.project.list_thermal_maps(
    "AssemblyTutorial",
    ["Main Board","Power Module"]
)