Skip to main content

Prime Mesh Python client library 2025 R2

download_f1_rw_end_plates_stl

Last update: 10.09.2025

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

Download STL file for the generic f1 rear wing example.

  • Parameters:

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

    force : Whether 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 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
>>>     f1_rw_end_plates = prime_examples.download_f1_rw_end_plates_stl()
>>>     with prime.FileIO(model) as io:
>>>         _ = io.import_cad(f1_rw_end_plates, params=prime.ImportCADParams(model))
>>>     print(model)

Connect with Ansys