download_pipe_tee_fmd#

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

Download the FMD file for the pipe tee example.

Parameters:
destinationstr, optional

Path to download the example file to. The default is None, in which case the default path for app data is used.

forcebool, optional

Option to download the example file. The default is False, in which case if the example file is cached, it is reused.

Returns:
:
str

Local path to the downloaded example 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
>>>     pipe_tee = prime_examples.download_pipe_tee_fmd()
>>>     with prime.FileIO(model) as io:
>>>         _ = io.import_cad(pipe_tee, params=prime.ImportCADParams(model))
>>>     print(model)

Examples using download_pipe_tee_fmd#

Mesh a pipe T-section for structural thermal and fluid flow analysis

Mesh a pipe T-section for structural thermal and fluid flow analysis