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.1.0-dev0
5.1.1-dev0
7 changes: 6 additions & 1 deletion ansys/api/additive/v0/additive_domain.proto
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ message MachineSettings {
double layer_rotation_angle = 7;
double hatch_spacing = 8;
double slicing_stripe_width = 9;
string heat_source_model = 10;
HeatSourceModelType heat_source_model = 10;
RingModeCoefficientSets ring_mode_coefficient_set = 11;
}

Expand Down Expand Up @@ -307,6 +307,11 @@ message DownloadFileResponse {
Progress progress = 10; // download progress
}

enum HeatSourceModelType {
HEAT_SOURCE_MODEL_GAUSSIAN = 0;
HEAT_SOURCE_MODEL_RING = 1;
}

enum RingModeCoefficientSets {
RING_MODE_COEFFICIENT_SET_00 = 0;
RING_MODE_COEFFICIENT_SET_01 = 1;
Expand Down