export_all_test_points#

Layer.export_all_test_points(project: str, cca_name: str, export_file: str, length_units: str = 'DEFAULT', displacement_units: str = 'DEFAULT', force_units: str = 'DEFAULT') int#

Export the test point properties for a CCA.

Available Since: 2023R1

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

  • cca_name (str) – Name of the CCA.

  • export_file (str) – Full path for the CSV file to export the test points list to.

  • length_units (str, optional) – Length units to use when exporting the test points. The default is DEFAULT.

  • displacement_units (str, optional) – Displacement units to use when exporting the test points. The default is DEFAULT.

  • force_units (str, optional) – Force units to use when exporting the test points. The default is DEFAULT.

Returns:

Status code of the response. 0 for success.

Return type:

int

Examples

>>> from ansys.sherlock.core.launcher import launch_sherlock
>>> sherlock = launch_sherlock()
>>> sherlock.project.import_odb_archive(
    "ODB++ Tutorial.tgz",
    True,
    True,
    True,
    True,
    project="Tutorial Project",
    cca_name="Card",
)
>>> sherlock.layer.export_all_test_points(
    "Tutorial Project",
    "Card",
    "TestPointsExport.csv",
    "DEFAULT",
    "DEFAULT",
    "DEFAULT"
)