Reuse Cloud Project#
This example demonstrates retrieving an existing Flow360 project from the cloud using its unique identifier. This process allows users to build upon existing cloud assets, such as geometries or meshes, for further analysis or parameter variations.
import flow360 as fl
my_project = fl.Project.from_cloud("PROJECT_ID_HERE")
with fl.SI_unit_system:
params = fl.SimulationParams(...)
my_project.run_case(params)