tidy3d.web.api.container.Job#
- class Job[source]#
- Bases: - WebContainer- Interface for managing the running of a - Simulationon server.- Parameters:
- attrs (dict = {}) โ Dictionary storing arbitrary metadata for a Tidy3D object. This dictionary can be freely used by the user for storing data without affecting the operation of Tidy3D as it is not used internally. Note that, unlike regular Tidy3D fields, - attrsare mutable. For example, the following is allowed for setting an- attr- obj.attrs['foo'] = bar. Also note that Tidy3D` will raise a- TypeErrorif- attrscontain objects that can not be serialized. One can check if- attrsare serializable by calling- obj.json().
- simulation (Union[Simulation, HeatSimulation, EMESimulation]) โ Simulation to run as a โtaskโ. 
- task_name (str) โ Unique name of the task. 
- folder_name (str = default) โ Name of folder to store task on web UI. 
- callback_url (Optional[str] = None) โ Http PUT url to receive simulation finish event. The body content is a json file with fields - {'id', 'status', 'name', 'workUnit', 'solverVersion'}.
- solver_version (Optional[str] = None) โ Custom solver version to use, otherwise uses default for the current front end version. 
- verbose (bool = True) โ Whether to print info messages and progressbars. 
- simulation_type (str = tidy3d) โ Type of simulation, used internally only. 
- parent_tasks (Optional[Tuple[str, ...]] = None) โ Tuple of parent task ids, used internally only. 
- task_id_cached (Optional[str] = None) โ Optional field to specify - task_id. Only used as a workaround internally so that- task_idis written when- Job.to_file()and then the proper task is loaded from- Job.from_file(). We recommend leaving unset as setting this field along with fields that were not used to create the task will cause errors.
 
 - Notes - This class provides a more convenient way to manage single simulations, mainly because it eliminates the need for keeping track of the - task_idand original- Simulation.- We can get the cost estimate of running the task before actually running it. This prevents us from accidentally running large jobs that we set up by mistake. The estimated cost is the maximum cost corresponding to running all the time steps. - Another convenient thing about - Jobobjects is that they can be saved and loaded just like other- tidy3dcomponents.- Examples - Once youโve created a - jobobject using- tidy3d.web.api.container.Job, you can upload it to our servers with:- tidy3d.web.upload(simulation, task_name="task_name", verbose=verbose)` - It will not run until you explicitly tell it to do so with: - tidy3d.web.api.webapi.start(job.task_id) - To monitor the simulationโs progress and wait for its completion, use - tidy3d.web.api.webapi.monitor(job.task_id, verbose=verbose) - After running the simulation, you can load the results using for example: - sim_data = tidy3d.web.api.webapi.load(job.task_id, path="out/simulation.hdf5", verbose=verbose) - The job container has a convenient method to save and load the results of a job that has already finished, without needing to know the task_id, as below: - # Saves the job metadata to a single file. job.to_file("data/job.json") # You can exit the session, break here, or continue in new session. # Load the job metadata from file. job_loaded = tidy3d.web.api.container.Job.from_file("data/job.json") # Download the data from the server and load it into a SimulationData object. sim_data = job_loaded.load(path="data/sim.hdf5") - See also - tidy3d.web.api.webapi.run_async()
- Submits a set of - Simulationobjects to server, starts running, monitors progress, downloads, and loads results as a- BatchDataobject.
- Batch
- Interface for submitting several - Simulationobjects to sever.
- Notebooks
 - Attributes - Methods - delete()- Delete server-side data associated with - Job.- download([path])- Download results of simulation. - estimate_cost([verbose])- Compute the maximum FlexCredit charge for a given - Job.- get_info()- Return information about a - Job.- Return information about the running - Job.- load([path])- Download job results and load them into a data object. - monitor()- Monitor progress of running - Job.- real_cost([verbose])- Get the billed cost for the task associated with this job. - run([path])- Run - Joball the way through and return data.- start()- Start running a - Job.- to_file(fname)- Exports - Tidy3dBaseModelinstance to .yaml, .json, or .hdf5 file- upload()- Upload this - Job.- Inherited Common Usage - simulation#
 - task_name#
 - folder_name#
 - callback_url#
 - solver_version#
 - verbose#
 - simulation_type#
 - parent_tasks#
 - task_id_cached#
 - to_file(fname)[source]#
- Exports - Tidy3dBaseModelinstance to .yaml, .json, or .hdf5 file- Parameters:
- fname (str) โ Full path to the .yaml or .json file to save the - Tidy3dBaseModelto.
 - Example - >>> simulation.to_file(fname='folder/sim.json') 
 - run(path='simulation_data.hdf5')[source]#
- Run - Joball the way through and return data.- Parameters:
- path_dir (str = "./simulation_data.hdf5") โ Base directory where data will be downloaded, by default current working directory. 
- Returns:
- Object containing simulation results. 
- Return type:
- Union[ - SimulationData,- HeatSimulationData,- EMESimulationData]
 
 - property task_id#
- The task ID for this - Job. Uploads the- Jobif it hasnโt already been uploaded.
 - get_info()[source]#
- Return information about a - Job.- Returns:
- TaskInfoobject containing info about status, size, credits of task and others.
- Return type:
- TaskInfo
 
 - start()[source]#
- Start running a - Job.- Note - To monitor progress of the - Job, call- Job.monitor()after started.
 - get_run_info()[source]#
- Return information about the running - Job.- Returns:
- Task run information. 
- Return type:
- RunInfo
 
 - monitor()[source]#
- Monitor progress of running - Job.- Note - To load the output of completed simulation into - SimulationDataobjects, call- Job.load().
 - download(path='simulation_data.hdf5')[source]#
- Download results of simulation. - Parameters:
- path (str = "./simulation_data.hdf5") โ Path to download data as - .hdf5file (including filename).
 - Note - To load the data after download, use - Job.load().
 - load(path='simulation_data.hdf5')[source]#
- Download job results and load them into a data object. - Parameters:
- path (str = "./simulation_data.hdf5") โ Path to download data as - .hdf5file (including filename).
- Returns:
- Object containing simulation results. 
- Return type:
- Union[ - SimulationData,- HeatSimulationData,- EMESimulationData]
 
 - real_cost(verbose=True)[source]#
- Get the billed cost for the task associated with this job. - Parameters:
- verbose (bool = True) โ Whether to log the cost and helpful messages. 
- Returns:
- Billed cost of the task in FlexCredits. 
- Return type:
- float 
 
 - estimate_cost(verbose=True)[source]#
- Compute the maximum FlexCredit charge for a given - Job.- Parameters:
- verbose (bool = True) โ Whether to log the cost and helpful messages. 
- Returns:
- Estimated cost of the task in FlexCredits. 
- Return type:
- float 
 - Note - Cost is calculated assuming the simulation runs for the full - run_time. If early shut-off is triggered, the cost is adjusted proportionately.
 - __hash__()#
- Hash method.