    

 ## On this page

  

 

 # ansys.meshing.prime.examples

 Last update: 17.07.2025 

### ansys.meshing.prime.examples.download\_f1\_rw\_main\_plane\_stl(destination=None, force=False)

Download STL file for the generic f1 rear wing 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**: Option to download the file. If true, the file is always downloaded. If false, an existing file in the cache may be 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_main_plane = prime_examples.download_f1_rw_main_plane_stl()
&gt;&gt;&gt;     with prime.FileIO(model) as io:
&gt;&gt;&gt;         _ = io.import_cad(f1_rw_main_plane, params=prime.ImportCADParams(model))
&gt;&gt;&gt;     print(model)

```