get_random_vibe_input_fields#

Analysis.get_random_vibe_input_fields(model_source=None)#

Get random vibe property fields based on the user configuration.

Available Since: 2023R2

Parameters:
model_source: ModelSource, optional

Model source to get the random vibe property fields from. The default is None.

Returns:
:
list[str]

Random vibe input field property names based on the user configuration.

Return type:

list[str]

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",
>>> )
>>> sherlock.analysis.get_random_vibe_input_fields(ModelSource.STRAIN_MAP)