Fork case

Fork case#

In this tutorial case we deomonstrate how to fork a case from the cloud.

 1import flow360 as fl
 2
 3project = fl.Project.from_cloud("PROJECT_ID_HERE")
 4
 5parent_case = fl.Case.from_cloud("PARENT_CASE_ID_HERE")
 6
 7param: fl.SimulationParams = parent_case.params
 8
 9# fork with new angle of attack being 1.23 degrees
10param.operating_condition.alpha = 1.23 * fl.u.deg
11
12project.run_case(params=param, fork_from=parent_case, name="Forked case with new alpha")