    

 ## On this page

  

 

 # ansys.meshing.prime.MeshInfo

 Last update: 17.07.2025 

#### MeshInfo.get\_statistics\_of\_cell\_zonelets(cell\_zonelets, params)

Get cell statistics of the given cell zonelets using provided cell statistics parameters.

- **Parameters:****cell\_zonelets**: Ids of cell zonelets for which statistics are calculated.
    
    **params**: Parameters to get cells statistics.
- **Returns:**[`CellStatisticsResults`](ansys.meshing.prime.CellStatisticsResults.md#ansys.meshing.prime.CellStatisticsResults): Returns the CellStatisticsResults.
- **Return type:**[`CellStatisticsResults`](ansys.meshing.prime.CellStatisticsResults.md#ansys.meshing.prime.CellStatisticsResults)

### Examples

```pycon
&gt;&gt;&gt; mesh_info = prime.MeshInfo(model)
&gt;&gt;&gt; part = model.get_part_by_name("part_name")
&gt;&gt;&gt; result = mesh_info.get_statistics_of_cell_zonelets(part.get_cell_zonelets(),
&gt;&gt;&gt;                  prime.CellStatisticsParams(model=model))

```