download_bracket_fmd#

ansys.meshing.prime.examples.download_bracket_fmd(destination=None, force=False)#

Download FMD file for the bracket scaffold example

Parameters:
destination: Optional[str]

Destination for the file to be downloaded. If nothing is provided, the default path in app data is used

force: bool

If true, the file is always downloaded. If false, an existing file in the cache may be re-used.

Returns:
str

Local path to the downloaded file

Raises:
ValueError

When the provided destination path does not exist on file

Return type:

Union[str, PathLike]

Examples

>>> import ansys.meshing.prime as prime
>>> import ansys.meshing.prime.examples as prime_examples
>>> with prime.launch_prime() as session:
>>>     model = session.model
>>>     bracket = prime_examples.download_bracket_fmd()
>>>     with prime.FileIO(model) as io:
>>>         _ = io.import_cad(bracket, params=prime.ImportCADParams(model))
>>>     print(model)