    

 ## On this page

  

 

 # ansys.meshing.prime.ControlData

 Last update: 17.07.2025 

#### ControlData.get\_scope\_face\_zonelets(scope, params)

Get the face zonelet ids for the given scope.

- **Parameters:****scope**: Scope definition to evaluate entities.
    
    **params**: Parameters to scope zonelets.
- **Returns:**`Iterable`\[[`int`](https://docs.python.org/3.11/library/functions.html#int)\] : Return the ids of face 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; face_zonelets = model.control_data.get_scope_face_zonelets(
&gt;&gt;&gt;                 prime.ScopeDefinition(model = model,
&gt;&gt;&gt;                 entity_type = prime.ScopeEntity.FACEZONELETS,
&gt;&gt;&gt;                 part_expression = "*"),
&gt;&gt;&gt;                 prime.ScopeZoneletParams(model =model))

```