tidy3d.web.run_async
tidy3d.web.run_async#
- tidy3d.web.run_async(simulations: Dict[str, Union[tidy3d.components.simulation.Simulation, tidy3d.components.heat.simulation.HeatSimulation]], folder_name: str = 'default', path_dir: str = '.', callback_url: Optional[str] = None, num_workers: Optional[int] = None, verbose: bool = True, simulation_type: str = 'tidy3d', parent_tasks: Optional[Dict[str, List[str]]] = None) tidy3d.web.api.container.BatchData #
Submits a set of Union[
Simulation
,HeatSimulation
] objects to server, starts running, monitors progress, downloads, and loads results as aBatchData
object.- Parameters
simulations (Dict[str, Union[
Simulation
,HeatSimulation
]]) – Mapping of task name to simulation.folder_name (str = "default") – Name of folder to store each task on web UI.
path_dir (str) – Base directory where data will be downloaded, by default current working directory.
callback_url (str = None) – Http PUT url to receive simulation finish event. The body content is a json file with fields
{'id', 'status', 'name', 'workUnit', 'solverVersion'}
.num_workers (int = None) – Number of tasks to submit at once in a batch, if None, will run all at the same time.
verbose (bool = True) – If True, will print progressbars and status, otherwise, will run silently.
- Returns
Contains the Union[
SimulationData
,HeatSimulationData
] for each Union[Simulation
,HeatSimulation
] inBatch
.- Return type