    

 ## On this page

  

 

 # download\_f1\_rw\_end\_plates\_stl

 Last update: 10.09.2025 

<a id="ansys.meshing.prime.examples.download_f1_rw_end_plates_stl"></a>

### 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`](https://docs.python.org/3.11/library/stdtypes.html#str): Local path to the downloaded file.
- **Return type:**
    
    [`Union`](https://docs.python.org/3.11/library/typing.html#typing.Union)\[[`str`](https://docs.python.org/3.11/library/stdtypes.html#str), [`PathLike`](https://docs.python.org/3.11/library/os.html#os.PathLike)\]

### Examples

```pycon
&gt;&gt;&gt; import ansys.meshing.prime as prime
&gt;&gt;&gt; import ansys.meshing.prime.examples as prime_examples
&gt;&gt;&gt; with prime.launch_prime() as session:
&gt;&gt;&gt;     model = session.model
&gt;&gt;&gt;     f1_rw_end_plates = prime_examples.download_f1_rw_end_plates_stl()
&gt;&gt;&gt;     with prime.FileIO(model) as io:
&gt;&gt;&gt;         _ = io.import_cad(f1_rw_end_plates, params=prime.ImportCADParams(model))
&gt;&gt;&gt;     print(model)

```