step_name_map#

ansys.aedt.core.modules.profile.step_name_map(input_name: str) str | None#

Map verbose AEDT step labels to compact names.

Currently, recognizes labels like "Frequency - <value>Hz" and reduces them to "<value>Hz". Falls back to the original string if no match is found.

Parameters:
input_namestr

Original AEDT step label.

Returns:
str

Examples

>>> from ansys.aedt.core.modules.profile import step_name_map
>>> step_name_map("Frequency - 1.0 GHz")
'1.0 GHz'