    

 ## On this page

  

 

 # get\_face\_zonelets

 Last update: 10.09.2025 

<a id="ansys.meshing.prime.lucid.SurfaceScope.get_face_zonelets"></a>

#### SurfaceScope.get\_face\_zonelets(model, part\_id)

Get the list of face zonelets for the given part in the scope.

- **Parameters:**
    
    **model**: PyPrimeMesh model.
    
    **part\_id**: Id of the part.
- **Returns:**
    
    `Iterable`\[[`int`](https://docs.python.org/3.11/library/functions.html#int)\] : Returns the list of zonelets.
- **Return type:**
    
    [`Iterable`](https://docs.python.org/3.11/library/typing.html#typing.Iterable)\[[`int`](https://docs.python.org/3.11/library/functions.html#int)\]

### Examples

```pycon
&gt;&gt;&gt; from ansys.meshing.prime import Model, SurfaceScope
&gt;&gt;&gt; model = client.model
&gt;&gt;&gt; su = SurfaceScope("*", "*", prime.ScopeEvaluationType.LABELS)
&gt;&gt;&gt; face_zonelets = su.get_face_zonelets(model, 2)

```