diff --git a/ansys/api/additive/VERSION b/ansys/api/additive/VERSION index 44b36cb..e7fd951 100644 --- a/ansys/api/additive/VERSION +++ b/ansys/api/additive/VERSION @@ -1 +1 @@ -5.0.0-dev0 +5.0.1-dev0 diff --git a/ansys/api/additive/v0/additive_domain.proto b/ansys/api/additive/v0/additive_domain.proto index 1c09a68..dfb3226 100644 --- a/ansys/api/additive/v0/additive_domain.proto +++ b/ansys/api/additive/v0/additive_domain.proto @@ -302,18 +302,3 @@ message DownloadFileResponse { string content_md5 = 4; // md5 hash of content Progress progress = 10; // download progress } - -message SimulationResponse { - string id = 1; - bytes logs = 2; - oneof ResponseType { - Progress progress = 10; - MeltPool melt_pool = 11; - PorosityResult porosity_result = 13; - MicrostructureResult microstructure_result = 14; - ThermalHistoryResult thermal_history_result = 15; - ThermalStrainResult thermal_strain_result = 16; - Microstructure3DResult microstructure_3d_result = 17; - MaterialTuningResult result = 18; - } -} diff --git a/ansys/api/additive/v0/additive_simulation.proto b/ansys/api/additive/v0/additive_simulation.proto index bade219..3f07a8c 100644 --- a/ansys/api/additive/v0/additive_simulation.proto +++ b/ansys/api/additive/v0/additive_simulation.proto @@ -41,6 +41,21 @@ message SimulationRequest { } } +message SimulationResponse { + string id = 1; + bytes logs = 2; // zip file containing simulation logs + oneof ResponseType { + Progress progress = 10; + MeltPool melt_pool = 11; + PorosityResult porosity_result = 13; + MicrostructureResult microstructure_result = 14; + ThermalHistoryResult thermal_history_result = 15; + ThermalStrainResult thermal_strain_result = 16; + Microstructure3DResult microstructure_3d_result = 17; + MaterialTuningResult material_tuning_result = 18; + } +} + // UploadFileRequest is used to transfer a file in chunks from // a client to the server. Each message should be <= 4MiB // unless the gRPC max receive message size has been changed.