Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ansys/api/additive/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.0.0-dev0
5.0.1-dev0
15 changes: 0 additions & 15 deletions ansys/api/additive/v0/additive_domain.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
15 changes: 15 additions & 0 deletions ansys/api/additive/v0/additive_simulation.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Loading