diff --git a/ansys/api/additive/VERSION b/ansys/api/additive/VERSION index 7dea76e..e6d5cb8 100644 --- a/ansys/api/additive/VERSION +++ b/ansys/api/additive/VERSION @@ -1 +1 @@ -1.0.1 +1.0.2 \ No newline at end of file diff --git a/ansys/api/additive/v0/additive_domain.proto b/ansys/api/additive/v0/additive_domain.proto index 10a5b78..05065d2 100644 --- a/ansys/api/additive/v0/additive_domain.proto +++ b/ansys/api/additive/v0/additive_domain.proto @@ -109,37 +109,6 @@ enum ProgressState { PROGRESS_STATE_ERROR = 4; } -message PorosityResult { - double void_ratio = 1; - double powder_ratio = 2; - double solid_ratio = 3; -} - -message GrainStatistics { - uint32 grain_number = 1; - float area_fraction = 2; - float diameter_um = 3; // microns - float orientation_angle = 4; -} - -message MicrostructureResult { - repeated GrainStatistics xy_circle_equivalence = 1; - repeated GrainStatistics xz_circle_equivalence = 2; - repeated GrainStatistics yz_circle_equivalence = 3; - bytes xy_vtk = 4; - bytes xz_vtk = 5; - bytes yz_vtk = 6; -} - -message VtkFile { - string name = 1; - bytes content = 2; -} - -message ThermalHistoryResult { - repeated VtkFile vtk_files = 1; -} - message Range { double min = 1; double max = 2; @@ -191,6 +160,12 @@ message PorosityInput { AdditiveMaterial material = 11; } +message PorosityResult { + double void_ratio = 1; + double powder_ratio = 2; + double solid_ratio = 3; +} + message MicrostructureInput { double cube_min_x = 2; double cube_min_y = 3; @@ -212,6 +187,22 @@ message MicrostructureInput { uint32 random_seed = 25; } +message GrainStatistics { + uint32 grain_number = 1; + float area_fraction = 2; + float diameter_um = 3; // microns + float orientation_angle = 4; +} + +message MicrostructureResult { + repeated GrainStatistics xy_circle_equivalence = 1; + repeated GrainStatistics xz_circle_equivalence = 2; + repeated GrainStatistics yz_circle_equivalence = 3; + bytes xy_vtk = 4; + bytes xz_vtk = 5; + bytes yz_vtk = 6; +} + message ThermalHistoryInput { oneof FileType { StlFile stl_file = 1; @@ -221,3 +212,7 @@ message ThermalHistoryInput { MachineSettings machine = 11; AdditiveMaterial material = 12; } + +message ThermalHistoryResult { + string coax_ave_zip_file = 1; +}