Returns a struct containing the files available for a given Ansys Cloud Burst Compute™ job. For a parameter sweep, the command returns a cell array of structs, each representing one sweep point.
| Syntax | Description |
|---|---|
| out=burstresultsquery (“job_id”); | Returns a struct (or a cell array of structs, if the job is a sweep) containing the files and sizes of each file for a given Ansys Cloud Burst Compute™ job. The details of the struct is discussed below. |
The contents of struct for the simulation (sweep point in the case of a parameter sweep) are as follows.
| Syntax | Description |
|---|---|
| simulation |
A struct that contains information for the given simulation, with the following fields:
|
Example
# Query for sweeps
# Get most recent id
recent_jobs = burstrecentids;
job_id=recent_jobs{1};
# Display job contents
query_result = burstresultsquery(job_id);
# Display ID of the first sweep point
?query_result{1}.simulation.ID;
# Display files from first sweep point
?query_result{1}.simulation.files{1}.name;
?query_result{1}.simulation.files{1}.size_kB;See Also
burstjobstatus, burstresultsdownload, burstrecentids, Ansys Cloud Burst Compute™ for Lumerical.