Skip to content

Commit

Permalink
addressed comments
Browse files Browse the repository at this point in the history
  • Loading branch information
wiktor-flex committed Feb 19, 2025
1 parent e45fb79 commit 0893bc0
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 24 deletions.
2 changes: 1 addition & 1 deletion examples/client_utils/case_list.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import flow360.v1 as fl
from flow360.log import log

for case in fl.MyCases(limit=10000):
for case in fl.MyCases(limit=1000):
log.info(case.short_description() + "solver_version = " + str(case.solver_version))
23 changes: 0 additions & 23 deletions examples/client_utils/mesh_list.py

This file was deleted.

7 changes: 7 additions & 0 deletions examples/client_utils/surface_mesh_list.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import flow360.v1 as fl
from flow360.log import log

for surface_mesh in fl.MySurfaceMeshes(limit=1000):
log.info(
surface_mesh.short_description() + "solver_version = " + str(surface_mesh.solver_version)
)
9 changes: 9 additions & 0 deletions examples/client_utils/volume_mesh_list.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import flow360.v1 as fl
from flow360.log import log

meshes = fl.MyVolumeMeshes(limit=1000)

for volume_mesh in meshes:
log.info(
volume_mesh.short_description() + "solver_version = " + str(volume_mesh.solver_version)
)

0 comments on commit 0893bc0

Please sign in to comment.