Volume Mesh List

Volume Mesh List#

This script demonstrates retrieving and iterating through a user’s available volume meshes using the Flow360 Python API. It accesses metadata for each mesh, such as its description and the solver version associated with its generation.

1import flow360.v1 as fl
2from flow360.log import log
3
4meshes = fl.MyVolumeMeshes(limit=1000)
5
6for volume_mesh in meshes:
7    log.info(
8        volume_mesh.short_description() + "solver_version = " + str(volume_mesh.solver_version)
9    )